/* ===================================
   Game Jam Landing Page Styles
   =================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&display=swap');

/* Celandine Font - Using Cinzel as fallback (similar elegant style) */
@font-face {
    font-family: 'Celandine';
    src: local('Celandine'), local('Cinzel');
    font-weight: 400 900;
    font-display: swap;
}

/* CSS Variables */
:root {
    --primary-dark: #060939;
    --primary-color: #1B4B66;
    --secondary-color: #2E8B57;
    --accent-green: #f9c433;
    --accent-teal: #e0ad1b;
    --light-blue: #E8F4F8;
    --cream: #FDF8F3;
    --gold: #D4AF37;
    --purple: #6B21A8;
    --dark-text: #1F2937;
    --light-text: #6B7280;
    --white: #FFFFFF;
    --gradient-hero: linear-gradient(135deg, #060939 0%, #1a1a5e 100%);
    --gradient-green: linear-gradient(180deg, #166534 0%, #14532D 100%);
    --shine-gradient: linear-gradient(90deg, #f9c433 0%, #fff8e0 40%, #f9c433 100%);
    --shine-duration: 3.5s;
    --text-gold: #f9e38a;
    --heading-font: 'Cinzel', 'Celandine', 'Times New Roman', serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    direction: ltr;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: #001a4d;
    background-image: linear-gradient(rgba(0, 26, 77, 0.7), rgba(0, 26, 77, 0.7)), url('../img/back.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    overflow-x: hidden;
}

/* Remove any text underline everywhere */
*, *::before, *::after {
    text-decoration: none !important;
}

/* ===================================
   Heading Font - Celandine/Cinzel
   =================================== */
h1, h2, h3, h4, h5, h6,
.section-title,
.registration-header h1,
.info-text h2,
.theme-text h2,
.journey-content h4,
.who-card h4,
.participation-column h3,
.criteria-item h4,
.award-card h4,
.faq-question h4 {
    font-family: var(--heading-font) !important;
    letter-spacing: 0.02em;
}

/* ===================================
   Header / Navigation - Dark Theme
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #001a4d;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    font-family: var(--heading-font);
}

.navbar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.navbar ul {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar ul li {
    list-style: none;
}

.navbar ul li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 15px;
    border-radius: 8px;
    margin-left: 8px;
    transition: all 0.3s ease;
}

.navbar ul li a:hover,
.navbar ul li.active a {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.burger-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.burger-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===================================
   Hero Slider Section
   =================================== */
.hero-slider {
    margin-top: 65px;
    padding-bottom: 0%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 0;
    height: auto;
}

.swiper-slide {
    height: 100vh;
    max-height: 900px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 9, 57, 0.35);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 40px;
}

.slide-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: none;
    font-family: var(--heading-font);
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: none;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: rgba(232, 244, 248, 0.15);
    color: #f9e38a;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 196, 51, 0.4);
    animation: textShine 2.6s ease-in-out infinite;
}

.btn-primary:hover {
    background: var(--accent-teal);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(249, 196, 51, 0.5);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    background: rgba(232, 244, 248, 0.15);
    color: #f9e38a;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: textShine 2.6s ease-in-out infinite;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-green);
}

/* ===================================
   Info Section (After Slider)
   =================================== */
.info-section {
    padding: 40px 0 50px 0;
    position: relative;
    overflow: visible;
    min-height: auto;
    display: flex;
    align-items: center;
    z-index: 2;
    margin-top: 0;
    margin-bottom: 0;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 9, 57, 0.5);
    z-index: -1;
    pointer-events: none;
}

.info-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #f9c433, rgba(249, 196, 51, 0)),
        radial-gradient(2px 2px at 60px 70px, #f9c433, rgba(249, 196, 51, 0)),
        radial-gradient(1px 1px at 50px 50px, #f9c433, rgba(249, 196, 51, 0)),
        radial-gradient(1px 1px at 130px 80px, #f9c433, rgba(249, 196, 51, 0)),
        radial-gradient(2px 2px at 90px 10px, #f9c433, rgba(249, 196, 51, 0));
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: none !important;
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

.info-section .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.info-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    position: relative;
    z-index: 2;
    gap: 80px;
}

.info-text {
    color: var(--white);
    text-align: left;
    flex: 1;
    max-width: 600px;
    margin-left: 1;
}

.info-text h2 {
    color: var(--text-gold) !important;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.3;
    text-shadow: none;
    font-family: var(--heading-font) !important;
}

.info-text p {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 35px;
    opacity: 1;
    text-shadow: none;
}

.info-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.info-image {
    position: relative;
    display: flex;
    flex: 0 0 auto;
    width: 640px;
    height: 600px;
    animation: floatOnly 4s ease-in-out infinite;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    margin-left: 10px;
    box-shadow: none;
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    filter: none;
}

@keyframes floatOnly {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ===================================
   Theme Section
   =================================== */
/* === OLD THEME SECTION - DISABLED ===
.theme-section-old {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
    margin-top: 0;
    --theme-space-1: 8px;
    --theme-space-2: 16px;
    --theme-space-3: 24px;
    --theme-space-4: 32px;
}

.theme-section-old::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 9, 57, 0.5);
    z-index: 1;
}

.theme-section-old .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.theme-content-old {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: left;
    position: relative;
    z-index: 2;
    max-width: 2000px;
    margin-left: auto;
    margin-right: auto;
    gap: 60px;
}

.theme-text-old {
    color: var(--white);
    text-align: left;
    text-align-last: left;
    max-width: 900px;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
    order: 2;
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.theme-text-inner-old {
    max-width: 700px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transform: none;
}

.theme-text-old .section-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #d7dde8 !important;
    margin: 0;
}

.theme-text-old h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin: -22px 0 25px 0;
    line-height: 1.3;
    text-shadow: none;
    font-family: var(--heading-font) !important;
}

.theme-body-old {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1000px;
}

.theme-text-old p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin: 0 0 35px 0;
    opacity: 0.92;
    text-shadow: none;
}

.theme-description-old {
    font-size: 1.35rem;
}

.theme-body-old p:last-child {
    margin-bottom: 0;
}

.theme-emphasis-old {
    margin-top: 2px;
    padding: 10px 22px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--accent-green);
    max-width: 3000px;
    width: fit-content;
    font-size: 1.2rem;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.theme-text-old p strong {
    color: #f9e38a;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    font-weight: 400;
    display: inline;
    animation: textShine 2.6s ease-in-out infinite;
}
=== END OLD THEME SECTION */

@keyframes textShine {
    0%, 100% {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45), 0 0 0 rgba(249, 227, 138, 0);
        filter: brightness(1);
    }
    50% {
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4), 0 0 18px rgba(249, 227, 138, 0.6);
        filter: brightness(1.1);
    }
}

@keyframes floatNoGlow {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ===================================
   Journey Section - Vertical Timeline
   =================================== */
.journey-section {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.journey-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #f9c433, rgba(249, 196, 51, 0)),
        radial-gradient(2px 2px at 60px 70px, #f9c433, rgba(249, 196, 51, 0)),
        radial-gradient(1px 1px at 50px 50px, #f9c433, rgba(249, 196, 51, 0)),
        radial-gradient(1px 1px at 130px 80px, #f9c433, rgba(249, 196, 51, 0)),
        radial-gradient(2px 2px at 90px 10px, #f9c433, rgba(249, 196, 51, 0));
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: none !important;
    opacity: 0.3;
}

.journey-section .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.journey-section .section-title {
    color: var(--white);
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    text-shadow: none;
    margin-bottom: 50px;
    font-family: var(--heading-font) !important;
}

.journey-section .section-desc {
    color: var(--light-text);
    text-align: center;
    text-shadow: none;
}

.journey-title-arrow {
    display: none;
}

.journey-arrow-line {
    width: 3px;
    height: 28px;
    background-color: var(--accent-green);
    border-radius: 2px;
}

.journey-arrow-head {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid var(--accent-green);
}

.timeline-start {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-size: 1.5rem;
}

.timeline-start i {
    display: inline-block;
    position: relative;
}

.timeline-start i::before {
    content: '|';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-style: normal;
    font-size: 1rem;
}

.journey-timeline {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #E5E7EB;
}

.journey-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-items: stretch;
    position: relative;
    margin-bottom: 80px;
    min-height: 120px;
    gap: 0;
}

.journey-item:last-child {
    margin-bottom: 0;
}

.journey-item:nth-child(odd) .journey-content {
    text-align: right;
    padding-right: 60px;
    padding-left: 0;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    justify-self: end;
}

.journey-item:nth-child(odd) .journey-number {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: center;
}

.journey-item:nth-child(even) .journey-content {
    text-align: left !important;
    padding-left: 60px;
    padding-right: 0;
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    justify-self: start;
    align-items: flex-start !important;
}

.journey-item:nth-child(even) .journey-number {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: center;
}

.journey-number {
    position: relative;
    transform: none;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #E8F4F8 0%, #D1E9F0 100%);
    border: 2px solid var(--accent-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-green);
    z-index: 2;
    transition: all 0.3s ease;
    text-shadow: none;
}

.journey-item:hover .journey-number {
    background: var(--accent-green);
    color: var(--white);
    transform: scale(1.1);
}

.journey-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    height: 100%;
}

.journey-item:nth-child(even) .journey-content {
    align-items: flex-start !important;
}

.journey-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: none;
    white-space: nowrap;
    word-wrap: break-word;
    max-width: 100%;
    line-height: 1.4;
    font-family: var(--heading-font) !important;
}

.journey-item:nth-child(odd) .journey-content h4 {
    text-align: right;
    margin-left: auto;
}

.journey-item:nth-child(even) .journey-content h4 {
    text-align: left !important;
    margin-right: auto;
    margin-left: 0;
}

.journey-item:nth-child(odd) .journey-date,
.journey-item:nth-child(odd) .journey-desc {
    justify-content: flex-end;
}

.journey-item:nth-child(even) .journey-date,
.journey-item:nth-child(even) .journey-desc {
    justify-content: flex-start !important;
    width: 100%;
    text-align: left !important;
}

.journey-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #e0e0e0;
    font-weight: 500;
    margin-bottom: 8px;
    text-shadow: none;
}

.journey-desc {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #d0d0d0;
    text-shadow: none;
}

.journey-date i {
    color: var(--accent-green);
    flex-shrink: 0;
}

.journey-desc i {
    color: var(--accent-green);
    flex-shrink: 0;
}

.journey-star {
    display: none;
}

.timeline-end-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 40px;
    color: #0d9488;
}

.timeline-end-arrow .arrow-line {
    width: 3px;
    height: 24px;
    background-color: #0d9488;
    border-radius: 2px;
}

.timeline-end-arrow i {
    font-size: 1.5rem;
    color: #0d9488;
    margin-left: -2px;
}

/* ===================================
   Who Can Join Section
   =================================== */
.who-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.who-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #f9c433, rgba(249, 196, 51, 0)),
        radial-gradient(2px 2px at 60px 70px, #f9c433, rgba(249, 196, 51, 0)),
        radial-gradient(1px 1px at 50px 50px, #f9c433, rgba(249, 196, 51, 0)),
        radial-gradient(1px 1px at 130px 80px, #f9c433, rgba(249, 196, 51, 0)),
        radial-gradient(2px 2px at 90px 10px, #f9c433, rgba(249, 196, 51, 0));
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: none !important;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.who-section .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 35px;
    font-weight: 900;
    font-family: var(--heading-font) !important;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.who-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.who-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.who-card:hover::before {
    left: 100%;
}

.who-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-green);
}

.who-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.who-card h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: none;
    font-family: var(--heading-font) !important;
}

.who-note {
    text-align: center;
    margin-top: 40px;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 2px solid var(--accent-green);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.who-note p {
    margin-bottom: 15px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    text-align: left;
}

.who-note p:last-child {
    margin-bottom: 0;
}

.who-note i {
    color: var(--accent-green);
    flex-shrink: 0;
    min-width: 20px;
    text-align: center;
}

/* ===================================
   Participation & Evaluation Section
   =================================== */
.participation-section {
    padding: 60px 0;
    position: relative;
}

.participation-section .section-header {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 35px;
}

.participation-section .section-title {
    text-align: center;
    font-weight: 900;
    font-family: var(--heading-font) !important;
}

.participation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.participation-column h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-shadow: none;
    font-family: var(--heading-font) !important;
}

.participation-column h3 i {
    color: var(--accent-green);
}

.criteria-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.criteria-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-green);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.criteria-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.criteria-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    text-shadow: none;
    font-family: var(--heading-font) !important;
}

.criteria-item p {
    font-size: 0.9rem;
    color: #d0d0d0;
}

/* ===================================
   Awards Section
   =================================== */
.awards-section {
    padding: 60px 0;
    position: relative;
}

.awards-section .section-title {
    color: var(--white);
    font-weight: 900;
    font-family: var(--heading-font) !important;
}

.awards-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.awards-title-icon {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.awards-section .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

.awards-section .section-header {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.awards-decor-book {
    position: absolute;
    left: clamp(120px, 24vw, 190px);
    top: clamp(320px, 32vw, 440px);
    width: clamp(125px, 18vw, 235px);
    height: auto;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
    animation: floatOnly 5s ease-in-out infinite;
}

.award-side-image {
    position: absolute;
    right: clamp(120px, 24vw, 200px);
    top: clamp(110px, 12vw, 190px);
    width: clamp(110px, 16vw, 200px);
    height: auto;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
    animation: floatOnly 5s ease-in-out infinite;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}

.award-card:nth-child(n+4) {
    display: none;
}

.award-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.award-card:nth-child(1) {
    min-height: 480px;
}

.award-card:nth-child(2) {
    min-height: 420px;
}

.award-card:nth-child(3) {
    min-height: 360px;
}

.award-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 50%;
    font-size: 2rem;
    color: #f6d26f;
    animation: textShine 2.6s ease-in-out infinite;
}

.award-card.gold .award-icon {
    background: transparent;
    color: #f6d26f;
}

.award-card.silver .award-icon {
    background: transparent;
    color: #f6d26f;
}

.award-card.silver {
    overflow: visible;
}

.award-card.bronze .award-icon {
    background: transparent;
    color: #f6d26f;
}

.award-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 15px;
    text-shadow: none;
    font-family: var(--heading-font) !important;
}

.award-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

.award-amount span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--light-text);
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    padding: 60px 0;
    position: relative;
}

.faq-section .section-title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: none;
    font-weight: 900;
    font-family: var(--heading-font) !important;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.12);
}

.faq-question h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: none;
    font-family: var(--heading-font) !important;
}

.faq-question h4 span {
    width: 30px;
    height: 30px;
    background: #f9c433;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #0b1540;
}

.faq-question i {
    color: var(--primary-dark);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: #d0d0d0;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===================================
   Partners Section
   =================================== */
.partners-section {
    padding: 60px 0;
}

.partners-section .section-title {
    color: var(--white);
    font-weight: 900;
    font-family: var(--heading-font) !important;
}

.partners-section .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

.partners-section .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.partners-section .section-header:not(:first-child) {
    margin-top: 100px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.partner-logo {
    padding: 20px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.partner-logo img {
    height: 140px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    border-radius: 10px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    padding: 60px 0 30px;
    color: var(--white);
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
}

.footer-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 10px auto 30px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-green);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===================================
   Registration Pages
   =================================== */
.registration-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #001a4d 0%, #001a4d 100%);
    min-height: 100vh;
}

.registration-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.registration-header {
    text-align: center;
    margin-bottom: 40px;
}

.registration-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-family: var(--heading-font) !important;
}

.registration-header p {
    color: var(--light-text);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-green);
    outline: none;
    box-shadow: 0 0 0 4px rgba(249, 196, 51, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.team-member {
    background: var(--light-blue);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.team-member h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-family: var(--heading-font) !important;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--accent-green);
    color: #f9e38a;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: textShine 2.6s ease-in-out infinite;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-add-member {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: rgba(249, 196, 51, 0.15);
    border: 2px dashed var(--accent-green);
    border-radius: 12px;
    color: #f9c433;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.btn-add-member:hover {
    background: rgba(249, 196, 51, 0.1);
}

/* ===================================
   Terms & Conditions Modal
   =================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light-text);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-dark);
}

.modal-content h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
    text-align: center;
    font-family: var(--heading-font) !important;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.terms-list li {
    padding: 15px 0;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dark-text);
}

.terms-list li:last-child {
    border-bottom: none;
}

.terms-list li span.term-number {
    background: var(--accent-green);
    color: var(--primary-dark);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-accept {
    padding: 12px 40px;
    background: var(--accent-green);
    color: var(--primary-dark);
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    background: var(--accent-teal);
    transform: translateY(-2px);
}

.btn-decline {
    padding: 12px 40px;
    background: transparent;
    color: var(--light-text);
    font-weight: 600;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-decline:hover {
    border-color: var(--primary-dark);
    color: var(--primary-dark);
}

/* Other Region Input */
.other-region-input {
    display: none;
    margin-top: 10px;
}

.other-region-input.active {
    display: block;
}

/* Force remove all underlines from links in every state */
a, a:link, a:visited, a:hover, a:focus, a:active,
.navbar ul li a, .navbar ul li a:hover, .navbar ul li a:focus, .navbar ul li.active a {
    text-decoration: none !important;
    text-decoration-color: transparent !important;
    text-decoration-thickness: 0 !important;
    text-underline-offset: 0;
}

/* Apply solid gold text color WITHOUT glow effect */
h1, h2, h3, h4, h5, h6,
.section-title,
.section-subtitle,
.about-desc-box h2,
.goal-card h4,
.theme-text h2,
.journey-content h4,
.participation-column h3,
.award-card h4,
.faq-section .section-title {
    color: #f9e38a !important;
    text-shadow: none;
}

/* Use register button color for specific main titles */
.info-text h2,
.theme-text h2,
.journey-section .section-title,
.who-section .section-title,
.participation-section .section-title,
.awards-section .section-title,
.faq-section .section-title,
.partners-section .section-title {
    color: var(--accent-green) !important;
}

/* Remove any remaining text shadows */
.slide-content p {
    text-shadow: none;
}

.goal-card h4 {
    text-shadow: none;
}

.journey-number {
    text-shadow: none;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .info-content {
        gap: 40px;
    }
    
    .info-image {
        width: 500px;
        height: 470px;
    }
    
    .theme-image {
        width: 500px;
        height: 470px;
    }
}

@media (max-width: 1024px) {
    .swiper-slide {
        height: 75vh;
        min-height: 420px;
        max-height: none;
    }
    
    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Hide decorative images on tablets */
    .awards-decor-book,
    .award-side-image {
        display: none !important;
    }
    
    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 800px;
    }
    
    .award-card:nth-child(1),
    .award-card:nth-child(2),
    .award-card:nth-child(3) {
        min-height: 280px;
    }
    
    .theme-content {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        text-align: left;
    }
    
    .theme-text,
    .theme-text-inner,
    .theme-body {
        max-width: 640px;
    }
    
    .info-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .info-image {
        width: 100%;
        max-width: 500px;
        height: 400px;
    }
    
    .theme-image {
        order: -1;
        width: 100%;
        max-width: 500px;
        height: 400px;
    }
    
    .who-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .participation-grid {
        grid-template-columns: 1fr;
    }
    
    .journey-timeline {
        padding: 0 10px;
    }
    
    .journey-item {
        grid-template-columns: 1fr auto 1fr;
        margin-bottom: 70px;
        min-height: 100px;
        gap: 0;
    }
    
    .journey-item:nth-child(odd) .journey-content,
    .journey-item:nth-child(even) .journey-content {
        padding-left: 40px;
        padding-right: 40px;
        text-align: center;
        grid-column: 1 / 4;
        justify-self: center;
        max-width: 400px;
    }
    
    .journey-item:nth-child(odd) .journey-number,
    .journey-item:nth-child(even) .journey-number {
        grid-column: 2;
        grid-row: 1;
    }
    
    .theme-text-inner {
        transform: none;
        align-items: center;
    }
    
    .theme-text {
        text-align: center;
        align-items: center;
    }
    
    .theme-emphasis {
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .swiper-slide {
        height: 65vh;
        min-height: 360px;
        max-height: none;
    }
    
    .navbar {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--primary-dark);
        flex-direction: column;
        justify-content: flex-start;
        padding: 30px;
        transition: all 0.3s ease;
    }
    
    .navbar.active {
        left: 0;
    }
    
    .navbar ul {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .navbar ul li {
        width: 100%;
    }
    
    .navbar ul li a {
        display: block;
        padding: 15px;
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }
    
    .burger-icon {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .burger-icon.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burger-icon.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-icon.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }

    .theme-text {
        max-width: 100%;
        align-items: flex-start;
    }

    .theme-text-inner,
    .theme-body {
        max-width: 100%;
    }

    .theme-text h2 {
        font-size: 2.3rem;
    }

    .theme-text p {
        font-size: 1.02rem;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .awards-decor-book {
        display: none !important;
    }
    
    .award-side-image {
        display: none !important;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
    }
    
    /* Awards grid - keep 3 columns on tablet */
    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .award-card:nth-child(1),
    .award-card:nth-child(2),
    .award-card:nth-child(3) {
        min-height: 200px;
        padding: 20px 15px;
    }
    
    .award-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .award-card h4 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .award-amount {
        font-size: 1.2rem;
    }
    
    .journey-item {
        width: 100%;
    }
    
    .journey-content h4 {
        font-size: 1.2rem;
    }
    
    .who-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .info-buttons {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .info-buttons a {
        text-align: center;
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .registration-container {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .info-text h2 {
        font-size: 2.2rem;
    }
    
    .info-text p {
        font-size: 1.1rem;
    }
    
    .modal-content {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .btn-accept, .btn-decline {
        width: 100%;
    }
    
    /* Reduce section gaps */
    .info-section {
        padding: 40px 0 60px 0;
        margin-bottom: 0;
    }
    
    .theme-section {
        padding: 60px 0;
        margin-top: 0;
    }
    
    .journey-section {
        padding: 60px 0;
    }
    
    .who-section {
        padding: 60px 0;
    }
    
    .participation-section {
        padding: 60px 0;
    }
    
    .awards-section {
        padding: 60px 0;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .partners-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .who-grid {
        grid-template-columns: 1fr;
    }
    
    .who-card {
        padding: 25px 20px;
    }
    
    /* Awards - single column on mobile */
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .award-card:nth-child(1),
    .award-card:nth-child(2),
    .award-card:nth-child(3) {
        min-height: auto;
        padding: 15px 20px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        text-align: left;
    }
    
    .award-card .award-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        margin: 0;
        flex-shrink: 0;
    }
    
    .award-card h4 {
        margin-bottom: 3px;
        font-size: 0.9rem;
    }
    
    .award-card .award-amount {
        font-size: 1.1rem;
    }
    
    .journey-timeline::before {
        left: 20px;
    }
    
    .journey-item {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
    }
    
    .journey-item:nth-child(odd) .journey-content,
    .journey-item:nth-child(even) .journey-content {
        text-align: left;
        padding: 0;
        max-width: none;
    }
    
    .journey-number {
        flex-shrink: 0;
    }
    
    .journey-content h4 {
        max-width: none;
    }
    
    /* Reduce section gaps more */
    .info-section {
        padding: 25px 0 30px 0;
        margin-bottom: 0;
    }
    
    .theme-section {
        padding: 30px 0;
        margin-top: 0;
    }
    
    .journey-section {
        padding: 30px 0;
    }
    
    .who-section {
        padding: 30px 0;
    }
    
    .participation-section {
        padding: 30px 0;
    }
    
    .awards-section {
        padding: 30px 0;
    }
    
    .faq-section {
        padding: 30px 0;
    }
    
    .partners-section {
        padding: 30px 0;
    }
    
    .hero-slider {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .swiper-slide {
        height: 55vh;
        min-height: 300px;
        max-height: none;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .header .container {
        padding: 0 15px;
    }
    
    .burger-icon {
        right: 15px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .swiper-slide {
        height: 400px;
    }
    
    .slide-content h1 {
        font-size: 1.6rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .info-buttons {
        gap: 10px;
        flex-wrap: nowrap;
        justify-content: center;
    }
    
    .info-buttons a {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .info-text h2,
    .theme-text h2 {
        font-size: 1.8rem;
    }
    
    .about-desc-box {
        padding: 30px 20px;
    }
    
    .about-desc-box .subtitle-tag {
        font-size: 0.75rem;
        padding: 6px 15px;
    }
    
    .faq-question h4 {
        font-size: 0.9rem;
    }
    
    .who-note {
        padding: 20px;
    }
    
    .who-note p {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    /* Even smaller gaps */
    .info-section,
    .theme-section,
    .journey-section,
    .who-section,
    .participation-section,
    .awards-section,
    .faq-section,
    .partners-section {
        padding: 30px 0;
    }
}

/* Container utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Section title utility */
.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 35px;
    font-family: var(--heading-font) !important;
}

/* ===================================
   Custom Additions - Game Jam Updates
   =================================== */

/* النقطة 1: عنوان قسم About على سطرين */
.info-title-split {
    font-size: 2.2rem !important;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

@media (max-width: 768px) {
    .info-title-split {
        font-size: 1.8rem !important;
    }
}

/* النقطة 2: محاذاة الوصف من الطرفين */
.info-description-justified {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* النقطة 3: زر Discord */
.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #f9c433 0%, #e0ad1b 100%);
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(249, 196, 51, 0.3);
}

.discord-btn i {
    font-size: 1.3rem;
    color: #f9e38a;
}

.discord-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 196, 51, 0.5);
    background: linear-gradient(135deg, #e0ad1b 0%, #f9c433 100%);
    color: #ffffff !important;
}

.discord-btn:active {
    transform: translateY(-1px);
}

/* النقطة 4: قسم Theme - نسخة متوافقة مع جميع المتصفحات */
.theme-section-v2 {
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
}

.theme-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    gap: 30px;
}

.theme-col {
    padding: 20px;
}

.theme-col-img {
    width: 45%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    text-align: center;
}

.theme-img {
    max-width: 100%;
    width: 420px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.theme-col-text {
    width: 55%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 55%;
    flex: 0 0 55%;
}

.theme-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-green) !important;
    margin: 0 0 35px 0;
    padding: 8px 0;
    display: block;
    background: transparent;
    border-radius: 0;
    font-family: var(--heading-font) !important;
}

.theme-section-v2 .theme-title {
    color: var(--accent-green) !important;
}

.theme-paragraph {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #e0e0e0;
    margin: 0 0 25px 0;
    text-align: left;
}

.theme-box {
    background: rgba(6, 9, 57, 0.6);
    border-left: 4px solid #f9c433;
    padding: 18px 25px;
    border-radius: 0 10px 10px 0;
}

.theme-box span {
    color: #f9e38a;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
}

/* Tablet */
@media screen and (max-width: 900px) {
    .theme-section-v2 {
        padding: 60px 0;
    }
    
    .theme-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .theme-col-img,
    .theme-col-text {
        width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
    
    .theme-col-img {
        margin-bottom: 20px;
    }
    
    .theme-img {
        width: 350px;
        max-width: 85%;
    }
    
    .theme-title {
        font-size: 2.2rem;
    }
    
    .theme-paragraph {
        text-align: center;
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .theme-box {
        border-left: none;
        border-top: 4px solid #f9c433;
        border-radius: 0 0 10px 10px;
        text-align: center;
    }
    
    .theme-box span {
        font-size: 1rem;
    }
}

/* Mobile */
@media screen and (max-width: 576px) {
    .theme-section-v2 {
        padding: 50px 0;
    }
    
    .theme-img {
        width: 280px;
        max-width: 90%;
    }
    
    .theme-title {
        font-size: 1.8rem;
        padding: 0;
    }
    
    .theme-paragraph {
        font-size: 1rem;
        line-height: 1.8;
        padding: 0 10px;
    }
    
    .theme-box {
        padding: 15px 18px;
    }
    
    .theme-box span {
        font-size: 0.95rem;
    }
}

/* النقطة 6 و 7: محاذاة النص في Journey items */
.journey-content {
    text-align: left;
}

.journey-content h4 {
    text-align: left;
    margin-bottom: 10px;
}

.journey-date,
.journey-desc {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
    text-align: left;
}

/* تحسين شكل بطاقات الرحلة */
.journey-item .journey-content {
    padding: 15px 20px;
}

/* محاذاة العناصر الفردية (1, 3) لليمين */
.journey-item:nth-child(odd) .journey-content {
    text-align: right;
}

.journey-item:nth-child(odd) .journey-content h4 {
    text-align: right;
}

.journey-item:nth-child(odd) .journey-date,
.journey-item:nth-child(odd) .journey-desc {
    justify-content: flex-end;
    text-align: right;
}

/* محاذاة العناصر الزوجية (2, 4) لليسار */
.journey-item:nth-child(even) .journey-content {
    text-align: left !important;
}

.journey-item:nth-child(even) .journey-content h4 {
    text-align: left !important;
    margin-right: auto !important;
    margin-left: 0 !important;
}

.journey-item:nth-child(even) .journey-date,
.journey-item:nth-child(even) .journey-desc {
    justify-content: flex-start !important;
    text-align: left !important;
}

/* Class مخصص للمحاذاة لليسار */
.journey-content.align-left {
    text-align: left !important;
    align-items: flex-start !important;
}

.journey-content.align-left h4 {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.journey-content.align-left .journey-date,
.journey-content.align-left .journey-desc {
    justify-content: flex-start !important;
    text-align: left !important;
    width: 100%;
}

@media (max-width: 768px) {
    .journey-content,
    .journey-content h4,
    .journey-date,
    .journey-desc {
        text-align: center !important;
        justify-content: center !important;
    }
    
    .journey-item:nth-child(odd) .journey-content,
    .journey-item:nth-child(odd) .journey-content h4,
    .journey-item:nth-child(odd) .journey-date,
    .journey-item:nth-child(odd) .journey-desc,
    .journey-item:nth-child(even) .journey-content,
    .journey-item:nth-child(even) .journey-content h4,
    .journey-item:nth-child(even) .journey-date,
    .journey-item:nth-child(even) .journey-desc {
        text-align: center !important;
        justify-content: center !important;
    }
}

/* وصف بدون محاذاة justify */
.info-description {
    text-align: left;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* ===================================
   إصلاح خلفية Theme لجميع المتصفحات
   =================================== */
.theme-title,
.theme-text h2,
.theme-section h2,
.theme-section-v2 h2,
.theme-col-text h2,
h2.theme-title {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    padding: 8px 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}
