/* CSS Custom Properties */
:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --accent-blue: #0057B7;
    --accent-blue-light: #00AEEF;
    --paint-orange: #FF6B35;
    --paint-red: #D73527;
    --paint-yellow: #FFB347;
    --section-bg: #111111;
    --text-gray: #cccccc;
}

/* Біжучий рядок */
.ticker-container {
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-blue-light));
    color: var(--primary-white);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    height: 35px;
    display: flex;
    align-items: center;
}

.ticker-text {
    display: inline-block;
    animation: ticker 40s linear infinite;
    will-change: transform;
}

.ticker-text span {
    display: inline-block;
    padding-right: 50px;
}

@keyframes ticker {
    0% {
        transform: translate3d(100%, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--primary-black);
    color: var(--primary-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 35px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 87, 183, 0.3);
    box-shadow: 0 0 20px rgba(0, 87, 183, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    margin-right: 2rem;
}

.desktop-menu {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Mobile Menu */
.mobile-menu-button {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-button span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-button.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-link {
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mobile-nav-link:hover {
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-blue-light));
    border-color: var(--accent-blue-light);
    transform: scale(1.05);
}

.nav-link {
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--accent-blue-light);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue-light);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Multiple Paint Splashes - Exact Images */
.paint-splash {
    position: absolute;
    animation: naturalFloat 18s ease-in-out infinite;
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
}

.paint-splash-1 {
    width: 400px;
    height: 500px;
    background: url('./attached_assets/клякса%201_1752500154978.png') center/contain no-repeat;
    top: 5%;
    right: 5%;
    animation-delay: 0s;
}

.paint-splash-2 {
    width: 350px;
    height: 420px;
    background: url('./attached_assets/клякса%202_1752500154978.png') center/contain no-repeat;
    bottom: 15%;
    right: 2%;
    animation-delay: 3s;
}

.paint-splash-3 {
    width: 300px;
    height: 380px;
    background: url('./attached_assets/клякса%203_1752500154979.png') center/contain no-repeat;
    top: 40%;
    right: 18%;
    animation-delay: 6s;
}

.paint-splash-4 {
    width: 280px;
    height: 350px;
    background: url('./attached_assets/клякса%204_1752500154979.png') center/contain no-repeat;
    top: 70%;
    right: 12%;
    animation-delay: 9s;
}

.paint-splash-5 {
    width: 200px;
    height: 280px;
    background: url('./attached_assets/клякса%201_1752500154978.png') center/contain no-repeat;
    top: 20%;
    left: 8%;
    animation-delay: 12s;
}

.paint-splash-hero-left-1 {
    width: 320px;
    height: 400px;
    background: url('./attached_assets/клякса%202_1752500154978.png') center/contain no-repeat;
    top: 10%;
    left: 5%;
    animation-delay: 1s;
}

.paint-splash-hero-left-2 {
    width: 280px;
    height: 350px;
    background: url('./attached_assets/клякса%203_1752500154979.png') center/contain no-repeat;
    bottom: 20%;
    left: 8%;
    animation-delay: 4s;
}

.paint-splash-hero-left-3 {
    width: 250px;
    height: 320px;
    background: url('./attached_assets/клякса%204_1752500154979.png') center/contain no-repeat;
    top: 50%;
    left: 3%;
    animation-delay: 7s;
}

.hero-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('./attached_assets/волна_1753363731543.png') center/cover no-repeat;
    top: 0;
    left: 0;
    opacity: 0.8;
    pointer-events: none;
    z-index: 5;
    animation: waveFloat 20s ease-in-out infinite;
}

@keyframes waveFloat {
    0%, 100% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translateX(10px) translateY(-5px) scale(1.02);
        opacity: 0.9;
    }
    50% {
        transform: translateX(-5px) translateY(8px) scale(0.98);
        opacity: 0.85;
    }
    75% {
        transform: translateX(8px) translateY(-3px) scale(1.01);
        opacity: 0.8;
    }
}

.timeline-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('./attached_assets/волна_1753363731543.png') center/cover no-repeat;
    top: 0;
    left: 0;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
    filter: blur(3px);
    animation: waveFloat 25s ease-in-out infinite;
}

@keyframes naturalFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-12px) translateX(3px) rotate(1deg) scale(1.03);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-8px) translateX(-5px) rotate(-1deg) scale(0.98);
        opacity: 0.65;
    }
    75% {
        transform: translateY(-15px) translateX(2px) rotate(2deg) scale(1.05);
        opacity: 0.6;
    }
}



/* Additional Paint Splashes - Different Images */
.paint-splash-6 {
    width: 180px;
    height: 220px;
    background: url('./attached_assets/клякса%202_1752500154978.png') center/contain no-repeat;
    top: 10%;
    left: 5%;
    animation-delay: 2s;
}

.paint-splash-7 {
    width: 220px;
    height: 280px;
    background: url('./attached_assets/клякса%203_1752500154979.png') center/contain no-repeat;
    bottom: 10%;
    left: 10%;
    animation-delay: 4s;
}

.paint-splash-8 {
    width: 200px;
    height: 260px;
    background: url('./attached_assets/клякса%204_1752500154979.png') center/contain no-repeat;
    top: 20%;
    right: 8%;
    animation-delay: 6s;
}

.paint-splash-9 {
    width: 160px;
    height: 200px;
    background: url('./attached_assets/клякса%202_1752500154978.png') center/contain no-repeat;
    top: 15%;
    left: 12%;
    animation-delay: 8s;
}

.paint-splash-10 {
    width: 240px;
    height: 300px;
    background: url('./attached_assets/клякса%203_1752500154979.png') center/contain no-repeat;
    bottom: 20%;
    right: 15%;
    animation-delay: 10s;
}

.paint-splash-11 {
    width: 190px;
    height: 240px;
    background: url('./attached_assets/клякса%204_1752500154979.png') center/contain no-repeat;
    top: 25%;
    left: 8%;
    animation-delay: 12s;
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 3rem;
    letter-spacing: -2px;
    line-height: 1.1;
}

.event-details {
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.event-date {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
    background: linear-gradient(45deg, #0057B7, #00AEEF);
    padding: 8px 15px;
    border-radius: 18px;
    border: none;
    display: inline-block;
    box-shadow: 0 0 15px rgba(0, 87, 183, 0.4);
    transition: all 0.3s ease;
    cursor: default;
}

.event-date:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 87, 183, 0.6);
    filter: brightness(1.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: var(--text-gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-button {
    background: linear-gradient(45deg, var(--paint-orange), var(--paint-red));
    color: var(--primary-white);
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 35px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 0 30px rgba(255, 179, 71, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.hero-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 179, 71, 0.6);
    filter: brightness(1.1);
}

/* Sections */
.section {
    padding: 5rem 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--section-bg);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-white);
}

.section-description {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-blue-light);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 400;
}

/* Timeline Badges */
.timeline-badge {
    background: var(--accent-blue);
    color: var(--primary-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    text-align: center;
}

.about-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-blue-light);
}

.about-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto;
}

.about-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 87, 183, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 87, 183, 0.3);
    box-shadow: 0 0 30px rgba(0, 87, 183, 0.2);
}

.highlight-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-blue-light);
    text-shadow: 0 0 20px rgba(0, 174, 239, 0.5);
}

.highlight-text {
    font-size: 1.2rem;
    color: var(--primary-white);
    font-weight: 500;
    max-width: 200px;
    line-height: 1.3;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Center the last two cards when they're on a separate row */
.categories-grid .category-card:nth-child(4),
.categories-grid .category-card:nth-child(5) {
    width: 350px;
}

.category-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 350px;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-card:hover,
.category-card.active {
    transform: translateY(-8px);
    border-color: var(--accent-blue);
    box-shadow: 0 15px 35px rgba(0, 87, 183, 0.2);
    cursor: pointer;
}

.category-card.active {
    background: rgba(0, 87, 183, 0.1);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.category-icon.neon-icon {
    filter: drop-shadow(0 0 10px rgba(0, 174, 239, 0.6));
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.2);
}

.category-card:hover .category-icon.neon-icon {
    filter: drop-shadow(0 0 20px rgba(0, 174, 239, 0.8));
    transform: scale(1.2);
}

.category-card:hover .category-icon img {
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(0, 174, 239, 0.8)) !important;
    transform: scale(1.2);
}

.category-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--primary-white);
    flex-shrink: 0;
    line-height: 1.3;
}

.category-description {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Winners Section - Mystery style */
.winners-mystery {
    text-align: center;
    padding: 4rem 0;
}

.mystery-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 2px solid rgba(0, 87, 183, 0.3);
    backdrop-filter: blur(10px);
}

.mystery-icon {
    margin: 0 auto 2rem;
    animation: mysterySpin 8s linear infinite;
}

.mystery-icon svg {
    filter: drop-shadow(0 4px 20px rgba(0, 174, 239, 0.4));
}

@keyframes mysterySpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.winners-mystery h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.winners-mystery p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.mystery-date {
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-blue-light));
    border-radius: 30px;
    padding: 1rem 2rem;
    display: inline-block;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    animation: mysterypulse 3s ease-in-out infinite;
}

@keyframes mysterypulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(0, 87, 183, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 8px 40px rgba(0, 174, 239, 0.5);
    }
}

/* Old winners content styles */
.winners-content {
    position: relative;
    margin-top: 3rem;
}

.winners-placeholder {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.winners-placeholder p {
    font-size: 1rem;
    color: var(--text-gray);
    font-style: italic;
    margin: 0;
}

.winners-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.winner-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.winner-item:hover {
    transform: translateX(10px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(0, 87, 183, 0.2);
}

.winner-logo {
    margin-right: 2rem;
    transition: transform 0.3s ease;
}

.winner-logo:hover {
    transform: scale(1.1);
}

.winner-info {
    flex: 1;
}

.winner-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-white);
}

.winner-info p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.winner-details-btn {
    background: var(--accent-blue);
    color: var(--primary-white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 15px rgba(0, 87, 183, 0.3);
}

.winner-details-btn:hover {
    background: var(--accent-blue-light);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 0 25px rgba(0, 174, 239, 0.5);
}

/* Voting Section */
.voting-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 87, 183, 0.1);
}

.voting-demo h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-white);
}



/* Reasons Section with Ticket Background */
.reasons-ticket-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.12;
    background: url('./attached_assets/билеті_1752502589669.png') center/contain no-repeat;
    background-size: 600px 450px;
    pointer-events: none;
    z-index: 1;
}

/* Reasons CTA */
.reasons-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.buy-ticket-btn {
    background: linear-gradient(45deg, var(--paint-orange), var(--paint-red));
    color: var(--primary-white);
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 35px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 0 30px rgba(255, 179, 71, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.buy-ticket-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 179, 71, 0.6);
    filter: brightness(1.1);
}

/* Methodology Grid */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.methodology-grid .method-card:last-child {
    grid-column: auto;
    max-width: none;
}

@media (max-width: 768px) {
    .methodology-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-grid .method-card:last-child {
        grid-column: 1;
        max-width: none;
    }
}

.method-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue-light);
}

.method-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.method-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-white);
}

.method-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Reasons Grid */
.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.reason-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    width: 250px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex-shrink: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.reason-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-blue);
}

.reason-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-blue-light);
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    opacity: 0.7;
}

.reason-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-white);
    line-height: 1.3;
    height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    text-align: center;
    word-wrap: break-word;
    hyphens: auto;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-blue);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    display: none;
}

.timeline-content {
    width: 45%;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 10;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-white);
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Jamala Section */
.jamala-section {
    background: radial-gradient(circle at 20% 50%, rgba(0, 87, 183, 0.1), transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 174, 239, 0.1), transparent 50%),
                #000000;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.jamala-content {
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 500px;
}

.jamala-section .jamala-text h2 {
    font-size: 1.5rem !important;
    color: #ffffff !important;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    font-weight: 600;
}

.jamala-name {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #0057B7, #00AEEF, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.jamala-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 20px;
}

.jamala-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(0, 87, 183, 0.2), rgba(0, 174, 239, 0.2));
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 174, 239, 0.3);
    margin-top: 30px;
}

.highlight-icon {
    font-size: 2rem;
    color: #00AEEF;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); color: #00AEEF; }
    50% { transform: scale(1.2); color: #0057B7; }
}

.jamala-highlight span:last-child {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.jamala-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.jamala-text {
    flex: 1;
    padding-right: 40px;
}

.jamala-image {
    flex: 0 0 auto;
    width: 400px;
}

.jamala-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 174, 239, 0.3);
    transition: transform 0.3s ease;
    max-height: 500px;
}

.jamala-image:hover img {
    transform: scale(1.05);
}

.jamala-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.2), transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Jamala Mobile Styles */
@media (max-width: 768px) {
    .jamala-section {
        padding: 60px 0;
    }
    
    .jamala-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .jamala-text {
        padding-right: 0;
    }
    
    .jamala-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .jamala-section .jamala-text h2 {
        font-size: 1.1rem !important;
        letter-spacing: 0.3px;
        color: #ffffff !important;
    }
    
    .jamala-name {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .jamala-text p {
        font-size: 1rem;
    }
    
    .jamala-highlight {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .jamala-image img {
        max-width: 300px;
        max-height: 40vh;
    }
}

/* Contact Section - Simple */
.contact-simple {
    display: flex;
    justify-content: center;
    gap: 6rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue-light);
    box-shadow: 0 15px 35px rgba(0, 87, 183, 0.2);
}

.contact-item h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-blue-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    color: var(--primary-white);
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.6;
}

/* Mobile responsive for contact section */
@media (max-width: 768px) {
    .contact-simple {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .contact-item {
        width: 100%;
        max-width: 400px;
        padding: 2rem 1.5rem;
    }
    
    .contact-item h3 {
        font-size: 1.5rem;
    }
    
    .contact-item p {
        font-size: 1.1rem;
    }
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 2rem;
    background: var(--accent-blue);
    color: var(--primary-white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification.show {
    transform: translateX(0);
}

.notification.error {
    background: var(--paint-red);
}

.notification.success {
    background: #28a745;
}

.notification-close {
    background: none;
    border: none;
    color: var(--primary-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Partners Section */
.general-partner-section {
    margin-bottom: 4rem;
}

.general-partner-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.general-partner-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.general-partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 87, 183, 0.3);
    border-color: var(--accent-blue-light);
}

.general-partner-logo-large {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.general-partner-logo-large img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.other-partners-section {
    margin-top: 4rem;
}

.other-partners-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partners-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.partners-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.partners-row-first {
    margin-bottom: 3rem;
}

.partners-row-second {
    margin-bottom: 2rem;
}

.partners-row-third {
    margin-bottom: 3rem;
}

.partner-card-large {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.partner-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 87, 183, 0.3);
    border-color: var(--accent-blue-light);
}

.partner-card-large img {
    max-width: 140px;
    max-height: 80px;
    object-fit: contain;
    flex-grow: 1;
}

.partner-name-large {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    margin-bottom: 15px;
}

.partner-card-small {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.partner-card-small:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 87, 183, 0.3);
    border-color: var(--accent-blue-light);
}

.partner-card-small img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    flex-grow: 1;
}

.partner-name-small {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    margin-bottom: 10px;
}

.partner-name-gold {
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent !important;
}

.partner-name-silver {
    background: linear-gradient(45deg, #F5F5F5, #D3D3D3, #B0B0B0);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent !important;
}

.partner-name-bronze {
    background: linear-gradient(45deg, #FF8C42, #CD7F32, #B8860B);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent !important;
}

.partner-name-large.partner-name-gold,
.partner-name-large.partner-name-silver,
.partner-name-large.partner-name-bronze {
    font-size: 0.9rem;
}

.partner-logo {
    width: 120px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.partner-logo svg {
    width: 100%;
    height: auto;
    max-width: 80px;
    max-height: 40px;
}

.partner-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 0.5rem;
}

.partners-cta {
    text-align: center;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.partners-cta p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-blue-light));
    color: var(--primary-white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 87, 183, 0.4);
    filter: brightness(1.1);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid rgba(0, 87, 183, 0.3);
    padding: 3rem 0;
    margin-top: 5rem;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-info {
    flex: 1;
    text-align: center;
}

.footer-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-blue-light);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(0, 174, 239, 0.3);
}

.footer-info p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.footer-year {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .event-date {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        padding: 6px 12px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .buy-ticket-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .timeline::before {
        left: 2rem;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 4rem;
    }
    
    .timeline-date {
        position: absolute;
        left: -3rem;
        width: auto;
        writing-mode: vertical-rl;
        text-orientation: mixed;
    }
    
    .timeline-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-button {
        display: flex;
    }
    
    /* Make third stat card full width on mobile */
    .about-additional {
        margin-top: 2rem;
    }
    
    .about-additional .stat-card {
        width: 100%;
        max-width: none;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .event-date {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
        padding: 5px 10px;
    }
    
    .event-details {
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .categories-grid,
    .methodology-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .reasons-ticket-bg {
        background-size: 400px 300px;
        opacity: 0.05;
    }
    
    /* Ticker adjustments for mobile */
    .ticker-container {
        height: 30px;
        font-size: 0.8rem;
    }
    
    .navbar {
        top: 30px;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    /* Partners grid for mobile */
    .general-partner-card {
        height: 180px;
        padding: 1.5rem;
    }
    
    .partners-grid-large {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partners-grid-small {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .partner-card-large {
        height: 150px;
        padding: 1.5rem;
    }
    
    .partner-card-large img {
        max-width: 100px;
        max-height: 60px;
    }
    
    .partner-card-small {
        padding: 1rem;
        height: 120px;
    }
    
    .partner-card-small img {
        max-width: 80px;
        max-height: 40px;
    }
    
    .partner-name-large {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .partner-name-small {
        font-size: 0.7rem;
        margin-top: 8px;
    }
    
    .partner-logo {
        width: 100px;
        height: 60px;
    }
    
    .mystery-container {
        padding: 2rem 1rem;
    }
    
    .winners-mystery h3 {
        font-size: 2rem;
    }
    
    .winners-mystery p {
        font-size: 1rem;
    }
    
    .mystery-date {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .partners-cta p {
        font-size: 1rem;
    }
    
    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .winners-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .paint-splash {
        opacity: 0.3;
        transform: scale(0.6);
    }
    
    .paint-splash-6, .paint-splash-7, .paint-splash-8, 
    .paint-splash-9, .paint-splash-10, .paint-splash-11 {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-form,
    .category-card,
    .method-card,
    .reason-card {
        padding: 1.5rem;
    }
    
    .timeline-date {
        font-size: 0.9rem;
    }
    
    .notification {
        right: 1rem;
        left: 1rem;
    }
}

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .paint-splash {
        opacity: 0.7;
    }
    
    .category-card,
    .method-card,
    .reason-card,
    .contact-form {
        border-color: rgba(255, 255, 255, 0.3);
    }
}

/* Enhanced animations */
@keyframes tickerPulse {
    0%, 100% {
        opacity: 1;
        transform: translateX(0);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-2px);
    }
}

.ticker-container {
    animation: tickerPulse 4s ease-in-out infinite;
}

/* Enhanced paint splash effects */
.paint-splash-1,
.paint-splash-2,
.paint-splash-3,
.paint-splash-4,
.paint-splash-5 {
    filter: hue-rotate(0deg) saturate(1.3) brightness(1.2) contrast(1.1);
}

.paint-splash-6,
.paint-splash-7 {
    filter: hue-rotate(45deg) saturate(1.4) brightness(1.3) contrast(1.2);
}

.paint-splash-8,
.paint-splash-9 {
    filter: hue-rotate(90deg) saturate(1.5) brightness(1.4) contrast(1.3);
}

.paint-splash-10,
.paint-splash-11 {
    filter: hue-rotate(135deg) saturate(1.3) brightness(1.2) contrast(1.1);
}

/* Partner cards enhanced hover effect */
.partner-card:hover .partner-logo {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--accent-blue-light);
    box-shadow: 0 10px 20px rgba(0, 87, 183, 0.4);
}

/* Additional visual enhancements */
.hero-wave {
    animation: waveFloat 20s ease-in-out infinite, wavePulse 8s ease-in-out infinite alternate;
}

@keyframes wavePulse {
    0% { filter: brightness(1) saturate(1); }
    100% { filter: brightness(1.1) saturate(1.2); }
}