/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0047AB;
    --secondary-color: #ffffff;
    --accent-color: #FF4444;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f5f5;
    --text-dark: #333333;
    --text-light: #666666;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo a {
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo .sharks {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.discord-icon {
    width: 20px;
    height: 20px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0047AB 0%, #001f4d 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="2"/></svg>');
    background-size: 100px 100px;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--secondary-color);
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Discord Promo in Hero */
.discord-promo {
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.15) 0%, rgba(138, 43, 226, 0.15) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 255, 127, 0.4);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    margin: 2rem auto;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: pulse 3s ease-in-out infinite;
    text-align: center;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 127, 0.4); }
    50% { box-shadow: 0 0 40px rgba(0, 255, 127, 0.6), 0 0 60px rgba(138, 43, 226, 0.4); }
}

.discord-promo-icon svg {
    fill: #00FF7F;
    filter: drop-shadow(0 0 10px rgba(0, 255, 127, 0.7));
}

.discord-promo-content {
    text-align: center;
}

.discord-promo-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.discord-promo-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Vape Features Grid in Hero */
.vape-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 700px;
    margin: 2.5rem auto;
    padding: 0 1rem;
}

.vape-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem 1rem;
    background: rgba(0, 255, 127, 0.1);
    border: 1px solid rgba(0, 255, 127, 0.3);
    border-radius: 12px;
    transition: var(--transition);
}

.vape-feature:hover {
    background: rgba(0, 255, 127, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 127, 0.3);
}

.vape-icon {
    font-size: 3.5rem;
    color: #00FF7F;
    filter: drop-shadow(0 0 8px rgba(0, 255, 127, 0.6));
    display: inline-block;
    line-height: 1;
}

.vape-feature span {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .vape-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .vape-feature {
        padding: 1.2rem 0.8rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(10px); }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--secondary-color);
}

/* Discord Section */
.discord-section {
    background: linear-gradient(135deg, #6B1FA8 0%, #008B8B 50%, #00A86B 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.discord-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
    background-size: 100px 100px;
    opacity: 0.5;
}

.discord-banner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.discord-banner-icon {
    margin-bottom: 2rem;
}

.discord-banner-icon svg {
    fill: white;
    filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.3));
}

.discord-banner-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.discord-tagline {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;
}

.discord-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    transition: var(--transition);
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
}

.service-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-item p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

.discord-cta {
    margin-top: 3rem;
}

.btn-discord {
    background: linear-gradient(135deg, #00FF7F 0%, #00CED1 100%);
    color: #1a1a1a;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 255, 127, 0.4);
}

.btn-discord svg {
    fill: #1a1a1a;
}

.btn-discord:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.discord-info {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

/* About Section cont. */
.about {
    background: var(--secondary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.leaders-section {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 15px;
}

.leaders-section h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.leaders {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.leader-card {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 71, 171, 0.2);
}

.leader-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.leader-card h5 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.leader-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: var(--light-bg);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 71, 171, 0.1);
}

/* Lists Section */
.lists {
    background: var(--light-bg);
    padding: 5rem 0;
}

.add-forms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.form-container {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.list-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.list-form input[type="text"],
.list-form textarea {
    padding: 1rem;
    border: 2px solid var(--light-bg);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.list-form input[type="text"]:focus,
.list-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.list-form input[type="file"] {
    padding: 0.5rem;
    border: 2px dashed var(--light-bg);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: var(--transition);
}

.list-form input[type="file"]:hover {
    border-color: var(--primary-color);
    background: rgba(0, 71, 171, 0.05);
}

.form-info {
    text-align: center;
    color: var(--text-light);
}

.form-info small {
    font-size: 0.9rem;
}

.lists-display {
    margin-top: 3rem;
}

.list-section {
    margin-bottom: 4rem;
}

.list-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.frajers-title {
    background: linear-gradient(135deg, #FF4444 0%, #CC0000 100%);
    color: white;
}

.gits-title {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.no-items {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-light);
    padding: 3rem;
    font-size: 1.2rem;
}

.list-item {
    background: var(--secondary-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    animation: fadeInUp 0.5s ease;
}

.list-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.item-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: var(--light-bg);
}

.item-content {
    padding: 1.5rem;
}

.item-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    word-wrap: break-word;
}

.item-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

.item-date {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 1rem;
    text-align: right;
    font-style: italic;
}

/* Loading Spinner */
.loading {
    text-align: center;
    padding: 2rem;
}

.spinner {
    border: 4px solid var(--light-bg);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: #4CAF50;
    color: white;
}

.alert-error {
    background: #FF4444;
    color: white;
}

.alert-warning {
    background: #FFC107;
    color: #333;
}

/* Team Section */
.team {
    background: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--secondary-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 71, 171, 0.2);
}

.card-image {
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #003380 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.card-image::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
}

.player-number {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.card-content {
    padding: 1.5rem;
    text-align: center;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.position {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Schedule Section */
.schedule {
    background: var(--secondary-color);
}

.schedule-list {
    max-width: 900px;
    margin: 0 auto;
}

.match-card {
    background: var(--secondary-color);
    border: 2px solid var(--light-bg);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: var(--transition);
}

.match-card:hover {
    box-shadow: 0 10px 30px rgba(0, 71, 171, 0.1);
    transform: translateX(5px);
}

.match-card.upcoming {
    border-color: var(--primary-color);
    background: linear-gradient(to right, rgba(0, 71, 171, 0.05) 0%, var(--secondary-color) 100%);
}

.match-date {
    text-align: center;
    min-width: 80px;
}

.match-date .day {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.match-date .month {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
}

.match-details {
    flex: 1;
}

.teams {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.home-team, .away-team {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.vs {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.match-info {
    display: flex;
    gap: 2rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.match-status {
    text-align: right;
}

.result {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--light-bg);
    color: var(--text-light);
}

.status-badge.win {
    background: #4CAF50;
    color: white;
}

.status-badge.draw {
    background: #FFC107;
    color: white;
}

/* News Section */
.news {
    background: var(--light-bg);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--secondary-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.news-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #003380 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.news-content {
    padding: 2rem;
}

.news-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.news-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.news-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.read-more:hover {
    margin-left: 5px;
}

/* Contact Section */
.contact {
    background: var(--secondary-color);
    display: none; /* Hidden as per requirements */
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    padding: 0.5rem 1.5rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--text-dark);
    transform: translateY(-3px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--light-bg);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form button {
    align-self: flex-start;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--secondary-color);
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 900;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-top: 0.5rem;
}

.footer-social {
    margin-top: 1.5rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #5865F2;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: var(--transition);
}

.social-btn svg {
    fill: white;
}

.discord-btn:hover {
    background: #4752C4;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.5);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-section ul a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.leaders-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.leader-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.leader-emoji {
    font-size: 1.5rem;
}

.footer-motto {
    margin-top: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-slogan {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* ==============================================
   GALLERY SECTION
   ============================================== */

.gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.gallery-upload-section {
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 71, 171, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: white;
}

.gallery-overlay p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
}

/* Lightbox */
.lightbox {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-color);
    color: white;
}

.lightbox-caption {
    color: white;
    padding: 20px;
    margin-top: 15px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
}

.lightbox-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.lightbox-caption p {
    font-size: 1rem;
    margin: 5px 0;
    opacity: 0.9;
}

.lightbox-date {
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: italic;
}

.lightbox-counter {
    position: absolute;
    top: -40px;
    left: 0;
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

/* Placeholder dla brak zdjęcia */
.item-placeholder {
    background: linear-gradient(135deg, var(--primary-color) 0%, #003380 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

/* Alert styles */
.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: 600;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .discord-promo {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .discord-promo-content h3 {
        font-size: 1rem;
    }

    .discord-promo-content p {
        font-size: 0.85rem;
    }

    .discord-banner-content h2 {
        font-size: 2rem;
    }

    .discord-tagline {
        font-size: 1rem;
    }

    .discord-services {
        grid-template-columns: 1fr;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .leaders {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .match-card {
        flex-direction: column;
        text-align: center;
    }

    .match-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .discord-promo {
        padding: 1rem;
    }

    .discord-promo-icon svg {
        width: 30px;
        height: 30px;
    }

    .discord-banner-icon svg {
        width: 50px;
        height: 50px;
    }

    .btn-discord {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }

    .btn {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        padding: 0 1rem;
    }

    .footer-slogan {
        font-size: 0.9rem;
    }
}

/* ========================================
   FRAJERZY SECTION - Shame & Defeat Theme
   ======================================== */
.frajers-section {
    background: linear-gradient(135deg, #1a0000 0%, #330000 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.frajers-section::before {
    content: '💀';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30rem;
    opacity: 0.03;
    pointer-events: none;
}

.frajers-section h2 {
    color: #ff4444;
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
    margin-bottom: 1rem;
}

.frajers-section .section-subtitle {
    color: #999;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.single-form-container {
    max-width: 600px;
    margin: 0 auto 4rem;
}

.frajer-form-box {
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid #ff4444;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 0 30px rgba(255, 68, 68, 0.2);
}

.frajer-form-box h3 {
    color: #ff4444;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.frajer-form-box .form-group {
    margin-bottom: 1.5rem;
}

.frajer-form-box label {
    display: block;
    color: #ccc;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.frajer-form-box input,
.frajer-form-box textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #666;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.frajer-form-box input:focus,
.frajer-form-box textarea:focus {
    outline: none;
    border-color: #ff4444;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.3);
}

.frajer-form-box textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-danger {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.4);
}

#frajersList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.frajer-item {
    background: rgba(255, 68, 68, 0.05);
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.frajer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.2);
    border-color: #ff4444;
}

.frajer-item::before {
    content: '🚫';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    opacity: 0.3;
}

.frajer-item .item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 68, 68, 0.2);
}

.frajer-item h4 {
    color: #ff6666;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.frajer-item p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.frajer-item .item-date {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* ========================================
   GITY SECTION - Glory & Victory Theme
   ======================================== */
.gits-section {
    background: linear-gradient(135deg, #001a00 0%, #003300 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.gits-section::before {
    content: '⭐';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30rem;
    opacity: 0.03;
    pointer-events: none;
}

.gits-section h2 {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin-bottom: 1rem;
}

.gits-section .section-subtitle {
    color: #9acd32;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.git-form-box {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.git-form-box h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.git-form-box .form-group {
    margin-bottom: 1.5rem;
}

.git-form-box label {
    display: block;
    color: #ccc;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.git-form-box input,
.git-form-box textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #666;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.git-form-box input:focus,
.git-form-box textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.git-form-box textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-success {
    background: linear-gradient(135deg, #ffd700 0%, #9acd32 100%);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

#gitsList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.git-item {
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.git-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
}

.git-item::before {
    content: '⭐';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    opacity: 0.5;
}

.git-item .item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.git-item h4 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.git-item p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.git-item .item-date {
    color: #9acd32;
    font-size: 0.9rem;
    font-style: italic;
}

/* ========================================
   GALLERY SECTION - Photo Grid Theme
   ======================================== */
.gallery-section {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 100%);
    padding: 6rem 0;
    position: relative;
}

.gallery-section h2 {
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    margin-bottom: 1rem;
}

.gallery-section .section-subtitle {
    color: #aaa;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.gallery-form-box {
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid #00d4ff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.gallery-form-box h3 {
    color: #00d4ff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.gallery-form-box .form-group {
    margin-bottom: 1.5rem;
}

.gallery-form-box label {
    display: block;
    color: #ccc;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.gallery-form-box input,
.gallery-form-box textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #666;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.gallery-form-box input:focus,
.gallery-form-box textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.gallery-form-box textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #0047AB 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

#galleryGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-item {
    background: rgba(0, 212, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    border-color: #00d4ff;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: #00d4ff;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.gallery-overlay p {
    color: #aaa;
    font-size: 0.85rem;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
}

.lightbox-caption {
    background: rgba(0, 0, 0, 0.8);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    max-width: 600px;
    text-align: center;
}

.lightbox-caption h3 {
    color: #00d4ff;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.lightbox-caption p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.lightbox-date {
    color: #666 !important;
    font-size: 0.9rem;
    font-style: italic;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.lightbox-close:hover {
    color: #00d4ff;
    transform: rotate(90deg);
    background: rgba(0, 212, 255, 0.3);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #00d4ff;
    color: white;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    user-select: none;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 212, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 1rem;
}

/* ========================================
   GALLERY MODAL - Lightbox Viewer
   ======================================== */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.gallery-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
}

.modal-info {
    background: rgba(0, 0, 0, 0.8);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    max-width: 600px;
    text-align: center;
}

.modal-info h3 {
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.modal-info p {
    color: #ccc;
    line-height: 1.6;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #00d4ff;
    transform: rotate(90deg);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #00d4ff;
    color: white;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-nav:hover {
    background: rgba(0, 212, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

/* ========================================
   RESPONSIVE - Mobile & Tablet
   ======================================== */
@media (max-width: 768px) {
    .frajers-section,
    .gits-section,
    .gallery-section {
        padding: 4rem 0;
    }

    .frajers-section::before,
    .gits-section::before {
        font-size: 15rem;
    }

    .single-form-container {
        padding: 0 1rem;
    }

    .frajer-form-box,
    .git-form-box,
    .gallery-form-box {
        padding: 1.5rem;
    }

    #frajersList,
    #gitsList,
    #galleryGrid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .modal-content {
        max-width: 95%;
    }

    .modal-nav {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .modal-prev {
        left: 10px;
    }

    .modal-next {
        right: 10px;
    }

    .modal-close {
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    #frajersList,
    #gitsList {
        grid-template-columns: repeat(2, 1fr);
    }

    #galleryGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   ALERTS & UTILITY STYLES
   ======================================== */
.no-items {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    padding: 3rem;
    font-style: italic;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: rgba(154, 205, 50, 0.2);
    border: 2px solid #9acd32;
    color: #9acd32;
}

.alert-error {
    background: rgba(255, 68, 68, 0.2);
    border: 2px solid #ff4444;
    color: #ff6666;
}

.alert-warning {
    background: rgba(255, 165, 0, 0.2);
    border: 2px solid #ffa500;
    color: #ffaa00;
}

/* Loading States */
button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Placeholder image styles */
.item-placeholder {
    background: linear-gradient(135deg, rgba(0, 71, 171, 0.3) 0%, rgba(0, 71, 171, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Legal Consent UI */
.legal-consent-box {
    margin: 14px 0;
    padding: 14px;
    border: 1px solid rgba(0, 71, 171, 0.2);
    border-radius: 14px;
    background: transparent;
}

.consent-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #20304f;
    padding: 8px 10px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.consent-item input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #1d3f7a;
    border-radius: 6px;
    background: #fff;
    display: inline-grid;
    place-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.consent-item input[type="checkbox"]::before {
    content: "";
    width: 10px;
    height: 10px;
    transform: scale(0);
    transition: transform 0.15s ease;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 20%, 80% 0, 43% 62%);
    background: #fff;
}

.consent-item input[type="checkbox"]:checked {
    background: #0047ab;
    border-color: #0047ab;
    box-shadow: 0 0 0 3px rgba(0, 71, 171, 0.2);
}

.consent-item input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.consent-item:has(input[type="checkbox"]:checked) {
    background: transparent;
}

.legal-link-btn {
    background: transparent;
    border: 0;
    color: #0047ab;
    padding: 0;
    text-decoration: underline;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.86rem;
}

.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: none;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
}

.legal-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-modal-dialog {
    position: relative;
    width: min(760px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.legal-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 0;
    background: transparent;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: #1a1a1a;
}

.legal-modal-content h4 {
    margin-top: 16px;
    margin-bottom: 8px;
    color: #0b2a64;
}

.legal-modal-content p {
    margin-bottom: 10px;
    color: #333;
}

.legal-version {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #666;
}

.remove-content-section {
    background: linear-gradient(135deg, #f5f9ff 0%, #ffffff 100%);
    padding: 5rem 0;
}

.remove-content-card {
    max-width: 860px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid rgba(0, 71, 171, 0.15);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 71, 171, 0.08);
}

.remove-content-card p {
    margin-bottom: 10px;
    color: #22324a;
}

.remove-content-card a {
    color: #0047ab;
    font-weight: 700;
    text-decoration: none;
}

.remove-content-card a:hover {
    text-decoration: underline;
}
