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

/* Prevent horizontal overflow */
* {
    max-width: 100%;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

html {
    height: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    scroll-padding-top: 100px; /* Account for fixed header when scrolling */
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}


/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Product page header darkening effect */
.product-body .header {
    background: rgba(255, 255, 255, 0.95);
}

.product-body .header.scrolled {
    background: rgba(30, 58, 138, 0.95);
    color: white;
}

.product-body .header.scrolled .logo {
    color: white;
}

.product-body .header.scrolled .nav a {
    color: rgba(255, 255, 255, 0.9);
}

.product-body .header.scrolled .nav a:hover {
    color: white;
}

.product-body .header.scrolled .nav-disabled {
    color: rgba(255, 255, 255, 0.5);
}

.entry-body .header.scrolled .nav-disabled {
    color: rgba(255, 255, 255, 0.5);
}

.product-body .header.scrolled .lang-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.product-body .header.scrolled .lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.product-body .header.scrolled .lang-btn i {
    color: white;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 100%;
    box-sizing: border-box;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3a8a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: #3b82f6;
    animation: spin 3s linear infinite;
}

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

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #1e3a8a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #3b82f6;
}

.nav-disabled {
    color: #9ca3af;
    font-weight: 500;
    cursor: not-allowed;
    opacity: 0.6;
    position: relative;
}

.nav-disabled::after {
    content: 'More infos coming soon...';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.nav-disabled:hover::after {
    opacity: 1;
}

.language-toggle {
    margin-left: 1rem;
}

.lang-btn {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 60px;
    justify-content: center;
}

.lang-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.lang-btn i {
    font-size: 0.8rem;
    color: #1e3a8a;
}

.lang-text {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(30, 58, 138, 0.8), rgba(59, 130, 246, 0.8)), 
                url('../images/2024 - allemagne 245.jpg');
    background-size: cover;
    scroll-margin-top: 100px; /* Prevent header overlap when scrolling */
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    min-height: 500px;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.search-box {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-box input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    outline: none;
    font-size: 1rem;
}

.search-box button {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-box button:hover {
    background: #1e3a8a;
}

.hero-credit {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    flex-wrap: wrap;
}

.hero-credit span {
    font-weight: 500;
}

.creator-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e4405f;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(228, 64, 95, 0.1);
    transition: all 0.3s ease;
}

.creator-link:hover {
    background: rgba(228, 64, 95, 0.2);
    transform: translateY(-2px);
    color: #e4405f;
    text-decoration: none;
}

.creator-link i {
    font-size: 1.1rem;
}

.patreon-link {
    color: #ff424d;
    background: rgba(255, 66, 77, 0.1);
}

.patreon-link:hover {
    background: rgba(255, 66, 77, 0.2);
    color: #ff424d;
}

/* Season Notice */
.season-notice {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.season-notice-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 600px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: seasonNoticeFadeIn 1s ease-out;
}

.season-notice-content i {
    font-size: 2rem;
    color: #87ceeb;
    animation: snowflakeFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(135, 206, 235, 0.6));
    transition: all 0.3s ease;
}

.season-notice-content i:hover {
    animation-duration: 2s;
    filter: drop-shadow(0 0 12px rgba(135, 206, 235, 0.8));
}

.season-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.season-text p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
    margin: 0;
}

@keyframes seasonNoticeFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes snowflakeFloat {
    0% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-8px) rotate(15deg) scale(1.1);
    }
    50% {
        transform: translateY(-12px) rotate(0deg) scale(1.2);
    }
    75% {
        transform: translateY(-6px) rotate(-15deg) scale(1.1);
    }
    100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
}

/* Season Notice Responsive */
@media (max-width: 768px) {
    .season-notice-content {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .season-notice-content i {
        font-size: 1.8rem;
    }
    
    .season-text h3 {
        font-size: 1.2rem;
    }
    
    .season-text p {
        font-size: 0.9rem;
    }
}

/* Events Section */
.events-section {
    padding: 4rem 0;
    background: white;
    scroll-margin-top: 100px; /* Prevent header overlap when scrolling */
}

.events-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3a8a;
}

.filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filters select {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: white;
    font-size: 1rem;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.filters select:focus {
    outline: none;
    border-color: #3b82f6;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Season Separator */
.season-separator {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 0 1rem;
}

.season-separator-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

.season-separator-label {
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

@media (max-width: 768px) {
    .season-separator {
        margin: 1.5rem 0;
        padding: 0 0.5rem;
    }
    
    .season-separator-label {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
}

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid #e5e7eb;
    /* Touch gestures */
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.event-card.event-soon-overlay {
    border: 2px solid #f59e0b;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.event-image {
    height: 200px;
    background: linear-gradient(45deg, #3b82f6, #1e3a8a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.event-content {
    padding: 1.5rem;
}

.event-date {
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
}

.event-location {
    color: #6b7280;
    margin-bottom: 1rem;
}

.event-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.event-category {
    display: inline-block;
    background: #dbeafe;
    color: #1e3a8a;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Recommendations Section */
.recommendations-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 60px 0;
}

.recommendations-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #1e3a8a;
    font-weight: 700;
}

.featured-event-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.featured-event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1e3a8a);
}

.featured-event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.featured-event-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.featured-event-date {
    background: #3b82f6;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.featured-event-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.featured-event-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7280;
}

.featured-event-detail i {
    color: #3b82f6;
    width: 20px;
}

.featured-event-description {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 25px;
}

.featured-event-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.featured-event-btn {
    padding: 12px 24px;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.featured-event-btn:hover {
    background: #1e3a8a;
}

.featured-event-btn.secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.featured-event-btn.secondary:hover {
    background: #3b82f6;
    color: white;
}

/* New Events Styles */
.new-events-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.new-event-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid #f59e0b;
}

.new-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.new-event-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Event Badges for Grid */
.event-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.new-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.updated-badge {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
}

.featured-badge {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.soon-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.now-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    animation: nowPulse 2s infinite;
    display: flex;
    align-items: center;
    gap: 8px;
}

.confetti-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    margin-left: 8px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.confetti-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.confetti-btn:active {
    transform: scale(0.95);
}

.event-confetti-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #e5e7eb;
}

.event-confetti-container .confetti-btn {
    margin-left: 0;
}

@keyframes nowPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Confetti Animation */
.confetti {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #f59e0b;
    animation: confetti-fall 3s ease-in forwards;
    z-index: 9999;
    border-radius: 2px;
}

.confetti:nth-child(odd) {
    background: #3b82f6;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.confetti:nth-child(3n) {
    background: #10b981;
    width: 10px;
    height: 4px;
    border-radius: 2px;
}

.confetti:nth-child(4n) {
    background: #dc2626;
    width: 4px;
    height: 10px;
    border-radius: 2px;
}

.confetti:nth-child(5n) {
    background: #8b5cf6;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.confetti:nth-child(6n) {
    background: #f97316;
    width: 6px;
    height: 6px;
    border-radius: 1px;
}

.confetti:nth-child(7n) {
    background: #ec4899;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-20px) translateX(0px) rotate(0deg) scale(1);
        opacity: 1;
    }
    10% {
        transform: translateY(0px) translateX(var(--horizontal-offset, 0px)) rotate(36deg) scale(1.1);
        opacity: 1;
    }
    25% {
        transform: translateY(25vh) translateX(calc(var(--horizontal-offset, 0px) * 0.8)) rotate(90deg) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translateY(50vh) translateX(calc(var(--horizontal-offset, 0px) * 0.6)) rotate(180deg) scale(0.8);
        opacity: 0.8;
    }
    75% {
        transform: translateY(75vh) translateX(calc(var(--horizontal-offset, 0px) * 0.4)) rotate(270deg) scale(0.6);
        opacity: 0.5;
    }
    100% {
        transform: translateY(100vh) translateX(calc(var(--horizontal-offset, 0px) * 0.2)) rotate(360deg) scale(0.3);
        opacity: 0;
    }
}

/* Multiple badges support - stack vertically */
.event-image {
    position: relative;
}

.event-image .event-badge:nth-child(2) {
    top: 10px;
    right: 10px;
}

.event-image .event-badge:nth-child(3) {
    top: 50px;
    right: 10px;
}

.event-image .event-badge:nth-child(4) {
    top: 90px;
    right: 10px;
}

.new-event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    margin-top: 10px;
}

.new-event-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 5px;
}

.new-event-date {
    background: #f59e0b;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.new-event-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.new-event-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4b5563;
}

.new-event-detail i {
    color: #f59e0b;
    width: 20px;
}

.new-event-description {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.new-event-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.new-event-btn {
    padding: 12px 24px;
    background: #f59e0b;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.new-event-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.new-event-btn.secondary {
    background: transparent;
    color: #f59e0b;
    border: 2px solid #f59e0b;
}

.new-event-btn.secondary:hover {
    background: #f59e0b;
    color: white;
}

/* Updated Events Styles */
.updated-events-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Featured Events Container */
.featured-events-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.featured-event-card-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid #dc2626;
}

.featured-event-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #b91c1c;
}

.featured-event-description {
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: #4b5563;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Featured section badges - intercept the border */
.featured-event-card-item .event-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 800;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    animation: bounce 2s infinite;
}

.featured-event-card-item .event-badge:nth-child(2) {
    top: -12px;
    right: 20px;
}

.featured-event-card-item .event-badge:nth-child(3) {
    top: 30px;
    right: 20px;
}

.featured-event-card-item .event-badge:nth-child(4) {
    top: 72px;
    right: 20px;
}

.updated-event-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid #1e3a8a;
}

.updated-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.updated-event-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    animation: pulse 2s infinite;
}

.updated-event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    margin-top: 10px;
}

.updated-event-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 5px;
}

.updated-event-date {
    background: #1e3a8a;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.updated-event-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.updated-event-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4b5563;
}

.updated-event-detail i {
    color: #1e3a8a;
    width: 20px;
}

.updated-event-description {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.updated-event-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.updated-event-btn {
    padding: 12px 24px;
    background: #1e3a8a;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.updated-event-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.updated-event-btn.secondary {
    background: transparent;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
}

.updated-event-btn.secondary:hover {
    background: #1e3a8a;
    color: white;
}



/* Enhanced Mobile Features */
@media (max-width: 768px) {
    .instagram-feed {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .featured-event-card {
        margin: 0 20px;
        padding: 20px;
    }
    
    .featured-event-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .featured-event-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .featured-event-btn {
        text-align: center;
        justify-content: center;
    }
    
    .new-event-card {
        margin: 0 20px;
        padding: 20px;
    }
    
    .new-event-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .new-event-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .new-event-btn {
        text-align: center;
        justify-content: center;
    }
    
    .updated-event-card {
        margin: 0 20px;
        padding: 20px;
    }
    
    .updated-event-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .updated-event-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .updated-event-btn {
        text-align: center;
        justify-content: center;
    }
}

/* Links Section */
.links-section {
    padding: 4rem 0;
    background: #f8fafc;
    scroll-margin-top: 100px; /* Prevent header overlap when scrolling */
}

.links-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3a8a;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.link-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.link-card i {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.link-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.link-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.link-card .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.2s ease;
    border: none;
}

.link-card .btn:hover {
    background: #1e3a8a;
}

/* Forum Section Styles */
.forum-section {
    padding: 4rem 0;
    background: #ffffff;
    scroll-margin-top: 100px; /* Prevent header overlap when scrolling */
}

.forum-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.forum-section p {
    text-align: center;
    margin-bottom: 2rem;
    color: #64748b;
    font-size: 1.1rem;
}

/* Guest Comment Notice */
.guest-comment-notice {
    background: #dbeafe;
    border-left: 4px solid #3b82f6;
    padding: 1rem 1.5rem;
    margin: 0 auto 2rem auto;
    max-width: 1000px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1e40af;
    font-size: 0.95rem;
}

.guest-comment-notice i {
    font-size: 1.2rem;
    color: #3b82f6;
    flex-shrink: 0;
}

.guest-comment-notice strong {
    font-weight: 600;
}

@media (max-width: 768px) {
    .guest-comment-notice {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Forum Tabs */
.forum-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.forum-tab {
    padding: 0.75rem 1.5rem;
    background: #f1f5f9;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: #64748b;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.forum-tab:hover {
    background: #e2e8f0;
    color: #1e3a8a;
}

.forum-tab.active {
    background: #1e3a8a;
    color: white;
    border-color: #1e3a8a;
}

.forum-tab i {
    font-size: 0.9rem;
}

#disqus_thread {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .forum-tabs {
        flex-direction: column;
    }
    
    .forum-tab {
        width: 100%;
        justify-content: center;
    }
}

/* Challenges Section Styles */
.challenges-section {
    padding: 4rem 0;
    background: #f8fafc;
    scroll-margin-top: 100px; /* Prevent header overlap when scrolling */
}

.challenges-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.challenges-section > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    color: #64748b;
    font-size: 1.1rem;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.challenge-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.challenge-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.challenge-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.challenge-creator {
    color: #64748b;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #f1f5f9;
    border-radius: 6px;
    display: inline-flex;
}

.challenge-creator i {
    color: #3b82f6;
}

.challenge-creator strong {
    color: #1e3a8a;
    font-weight: 600;
}

.challenge-date {
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.challenge-date i {
    color: #3b82f6;
}

.challenge-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.challenge-rules {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
}

.challenge-rules h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.challenge-rules h4 i {
    color: #3b82f6;
}

.challenge-rules-text {
    color: #374151;
    line-height: 1.7;
    white-space: pre-wrap;
}

.challenge-reels {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.challenge-reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    flex-direction: row;
}

.challenge-reels-grid .challenge-reel-container iframe {
    min-height: 400px;
}

.challenge-reel-container {
    position: relative;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.challenge-reel-container iframe {
    display: block;
    width: 100%;
    min-height: 500px;
    border: none;
}

.challenge-reel-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.challenge-reel-link:hover {
    opacity: 0.9;
}

.challenge-reel-link i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .challenges-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .challenge-card {
        padding: 1.5rem;
    }
    
    .challenge-title {
        font-size: 1.3rem;
    }
    
    .challenge-reel-container iframe {
        min-height: 400px;
    }
    
    .challenge-reels-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section Styles */
.contact-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    scroll-margin-top: 100px; /* Prevent header overlap when scrolling */
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.5rem;
    font-weight: 700;
}

.contact-section p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.field-error {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.field-error::before {
    content: "⚠";
    font-size: 0.8rem;
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.contact-form .btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Contact Notifications */
.contact-notification {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    animation: slideInDown 0.3s ease;
}

.contact-notification-success {
    background: linear-gradient(135deg, #00b894, #00a085);
    border: 1px solid rgba(0, 184, 148, 0.3);
}

.contact-notification-error {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: white;
    font-size: 0.95rem;
}

.notification-content i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification-content span {
    flex: 1;
    white-space: pre-line;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Contact Form */
@media (max-width: 768px) {
    .contact-form {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .notification-content {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: white;
    padding: 2rem 0;
}

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

.footer-content p {
    margin: 0;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.social-link i {
    font-size: 1.2rem;
    color: #e4405f;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nav {
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .language-toggle {
        margin-left: 0;
        margin-top: 0;
    }
    
    .lang-btn {
        min-width: 70px;
        padding: 0.6rem 1rem;
    }
}

.footer-legal {
    display: flex;
    align-items: center;
}

.impressum-toggle-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.impressum-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.impressum-toggle-btn i {
    font-size: 0.8rem;
}

.nav {
    display: flex;
    gap: 2rem;
}

.admin-link {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
}

.admin-link.visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.admin-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    color: white;
    text-decoration: none;
}

.admin-link i {
    font-size: 0.8rem;
}

/* Modal */
.modal {
    display: none !important;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal[style*="display: block"] {
    display: block !important;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.modal-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    z-index: 1;
}

.close:hover {
    color: #000;
}

.modal-header {
    background: linear-gradient(45deg, #3b82f6, #1e3a8a);
    color: white;
    padding: 2rem;
    border-radius: 15px 15px 0 0;
}

.modal-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding-right: 50px;
}

.modal-body {
    padding: 2rem;
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.info-item i {
    color: #3b82f6;
    font-size: 1.2rem;
    width: 20px;
    flex-shrink: 0;
}

.info-item i.fab.fa-instagram {
    color: #e4405f;
}

.info-item span {
    flex: 1;
}

/* Tooltip Styles */
.tooltip-container {
    position: relative;
    cursor: help;
}

.tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1e3a8a;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    margin-bottom: 0.5rem;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1e3a8a;
}

.tooltip-container:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.instagram-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background: rgba(59, 130, 246, 0.1);
}

.instagram-link:hover {
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
    text-decoration: none;
}

.timeline {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 80px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, #3b82f6, #1e3a8a);
    border-radius: 1px;
}

.timeline h4 {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline h4::before {
    content: '⏰';
    font-size: 1.2rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #3b82f6;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #3b82f6;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #3b82f6;
}

.timeline-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

.timeline-time {
    font-weight: 700;
    color: #3b82f6;
    min-width: 120px;
    line-height: 1.4;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.timeline-time strong {
    color: #1e3a8a;
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-item span:last-child {
    flex: 1;
    color: #374151;
    font-weight: 500;
    line-height: 1.5;
}

.timeline-day {
    margin-bottom: 2rem;
}

.timeline-day:last-child {
    margin-bottom: 0;
}

.timeline-day-header {
    color: #1e3a8a;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #dbeafe, #e0e7ff);
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-day-header::before {
    content: '📅';
    font-size: 1rem;
}

/* Parallel Timeline Styles */
.timeline-time-group {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #bae6fd;
}

.timeline-time-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #0ea5e9;
}

.timeline-simultaneous-indicator {
    background: #0ea5e9;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.timeline-parallel-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-left: 2rem;
    position: relative;
}

/* Side-specific organization */
.timeline-parallel-container.has-sides {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.timeline-parallel-container.has-sides .side-left {
    grid-column: 1;
}

.timeline-parallel-container.has-sides .side-right {
    grid-column: 2;
}

/* Side indicators */
.side-left::before {
    content: '←';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #0ea5e9;
    font-size: 1.2rem;
    font-weight: bold;
}

.side-right::before {
    content: '→';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #0ea5e9;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Side-specific styling */
.side-left {
    border-left-color: #0ea5e9 !important;
}

.side-right {
    border-left-color: #06b6d4 !important;
}

.timeline-parallel-container::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #0ea5e9, #0284c7);
    border-radius: 2px;
}

.parallel-item {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #0ea5e9;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.parallel-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #0ea5e9;
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #0ea5e9;
}

.parallel-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.parallel-item:nth-child(1) {
    border-left-color: #0ea5e9;
}

.parallel-item:nth-child(2) {
    border-left-color: #06b6d4;
}

.parallel-item:nth-child(3) {
    border-left-color: #0891b2;
}

.parallel-item:nth-child(4) {
    border-left-color: #0e7490;
}

.parallel-item:nth-child(5) {
    border-left-color: #155e75;
}

/* Timeline Notes */
.timeline-note {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: #fef3c7;
    border-left: 3px solid #f59e0b;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #92400e;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}

.timeline-note i {
    color: #f59e0b;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.timeline-note span {
    flex: 1;
}

/* Timeline Updated Styles */
.timeline-updated {
    border: 3px solid #1e3a8a;
    box-shadow: 0 0 20px rgba(30, 58, 138, 0.2);
    position: relative;
}

.timeline-updated-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    animation: pulse 2s infinite;
    z-index: 10;
}

.activity-name {
    font-weight: 600;
    color: #1f2937;
    display: block;
    margin-bottom: 0.25rem;
}

.activity-time {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: #f3f4f6;
    border-radius: 4px;
    border-left: 3px solid #9ca3af;
}

/* Responsive adjustments for parallel timeline */
@media (max-width: 768px) {
    .timeline-parallel-container {
        grid-template-columns: 1fr !important;
        margin-left: 1rem;
        gap: 1rem;
    }
    
    .timeline-parallel-container.has-sides {
        grid-template-columns: 1fr !important;
    }
    
    .timeline-parallel-container.has-sides .side-left,
    .timeline-parallel-container.has-sides .side-right {
        grid-column: 1 !important;
    }
    
    .timeline-parallel-container::before {
        left: -0.5rem;
    }
    
    .parallel-item::before {
        left: -1rem;
    }
    
    .timeline-time-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    /* Mobile side indicators */
    .side-left::before {
        left: -1.5rem;
        font-size: 1rem;
    }
    
    .side-right::before {
        right: -1.5rem;
        font-size: 1rem;
    }
    
    /* Stack side indicators vertically on very small screens */
    @media (max-width: 480px) {
        .side-left::before,
        .side-right::before {
            position: static;
            transform: none;
            display: inline-block;
            margin-right: 0.5rem;
            margin-bottom: 0.25rem;
        }
        
        .activity-time {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        /* Make timeline items more compact on very small screens */
        .parallel-item {
            padding: 0.75rem;
        }
        
        .timeline-note {
            padding: 0.5rem;
            font-size: 0.85rem;
        }
        
        .timeline-simultaneous-indicator {
            font-size: 0.75rem;
            padding: 0.2rem 0.6rem;
        }
    }
    
    /* Mobile side labels */
    .mobile-side-label {
        background: linear-gradient(135deg, #0ea5e9, #0284c7);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.9rem;
        margin: 1rem 0 0.5rem 0;
        text-align: center;
        box-shadow: 0 2px 8px rgba(14, 165, 233, 0.3);
    }
}

/* View Toggle */
.view-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.view-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.view-btn.active {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.view-btn:hover {
    border-color: #3b82f6;
}

/* Calendar View */
.calendar-view {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.calendar-nav {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.calendar-nav:hover {
    background: #1e3a8a;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1px;
}

.calendar-weekdays > div {
    background: #f8fafc;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: #1e3a8a;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.calendar-day {
    background: white;
    padding: 1rem;
    min-height: 80px;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
}

.calendar-day:hover {
    background: #f8fafc;
}

.calendar-day.empty {
    background: #f8fafc;
    cursor: default;
}

.calendar-day.has-events {
    background: #dbeafe;
}

.calendar-day.has-events:hover {
    background: #bfdbfe;
}

.day-number {
    font-weight: 600;
    color: #1e3a8a;
}

.event-indicator {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}



/* Social Share */
.social-share {
    margin-bottom: 1.5rem;
    text-align: center;
}

.social-share h4 {
    margin: 0 0 0.75rem 0;
    color: #1e3a8a;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.social-share h4 i {
    color: #3b82f6;
}

.share-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.share-btn i {
    font-size: 0.9rem;
}

/* Event Resources Section */
.event-resources {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 2px solid #dee2e6;
}

.event-resources h4 {
    margin-bottom: 1.5rem;
    color: #1e3a8a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-resources h4 i {
    color: #3b82f6;
}

.resources-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: start;
}

/* QR Code Section */
.qr-code-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.qr-code-wrapper {
    position: relative;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-code-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.qr-code-image {
    width: 240px;
    height: 240px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.qr-code-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulse 2s ease-in-out infinite;
}

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

.qr-code-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    margin: 0;
}

/* Rules Section */
.rules-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rules-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.rules-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.rules-icon-wrapper i {
    font-size: 2.5rem;
    color: white;
}

.rules-section h5 {
    margin: 0.5rem 0;
    color: #1e3a8a;
    font-size: 1.1rem;
}

.rules-section p {
    margin: 0.5rem 0 1rem 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.rules-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

.rules-download-btn:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.rules-download-btn i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .modal-header-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .share-btn {
        align-self: flex-end;
    }
    
    .resources-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .qr-code-image {
        width: 200px;
        height: 200px;
    }
    
    .qr-code-glow {
        width: 220px;
        height: 220px;
    }
}

/* Day Events List */
.day-events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.day-event-item {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    border-left: 4px solid #3b82f6;
}

.day-event-item:hover {
    background: #e0e7ff;
}

.day-event-item strong {
    display: block;
    color: #1e3a8a;
    margin-bottom: 0.25rem;
}

.day-event-item span {
    color: #6b7280;
    font-size: 0.9rem;
}

.address-container {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    border-left: 4px solid #3b82f6;
}

.address-container h4 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.address-container h4::before {
    content: '📍';
    font-size: 1.2rem;
}

.address-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.address-info i {
    color: #3b82f6;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.address-info span {
    color: #374151;
    font-weight: 500;
    line-height: 1.5;
}

/* Transport Section */
.transport-container {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
}

.transport-container h4 {
    margin-bottom: 1rem;
    color: #1e3a8a;
    font-weight: 600;
}

.transport-info {
    margin-bottom: 1rem;
}

.transport-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background: white;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.transport-item i {
    color: #3b82f6;
    width: 20px;
    text-align: center;
}

.transport-item span {
    color: #4b5563;
    font-size: 0.9rem;
}

.transport-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.transport-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s ease;
}

.transport-btn:hover {
    background: #1e3a8a;
}

.map-container {
    height: 300px;
    border-radius: 10px;
    margin-top: 1rem;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-container small {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
}

.map-container small a {
    color: #3b82f6;
    text-decoration: none;
}

.map-container small a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 0.75rem 0;
    }
    
    .header .container {
        padding: 0.75rem 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .nav {
        gap: 0.75rem;
        font-size: 0.95rem;
    }
    
    .hero {
        padding-top: 90px; /* Account for header on mobile */
        min-height: 90vh;
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .season-notice {
        margin: 1.5rem 0;
    }
    
    .season-notice-content {
        padding: 1.25rem;
    }
    
    .hero-credit {
        margin-top: 1.5rem;
        padding: 0 1rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .creator-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .search-box {
        padding: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .filters {
        flex-direction: column;
        align-items: center;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.5rem 0;
    }
    
    .header .container {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .nav {
        font-size: 0.9rem;
        gap: 0.75rem;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        margin-top: 100px; /* More space for header on mobile */
        padding-bottom: 2rem;
        padding-top: 100px;
        scroll-margin-top: 100px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .season-notice {
        margin: 1.5rem 0;
    }
    
    .season-notice-content {
        padding: 1rem;
    }
    
    .hero-credit {
        margin-top: 1.5rem;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0 1rem;
        justify-content: center;
    }
    
    .creator-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .search-box {
        margin: 1rem 0;
        padding: 0 1rem;
    }
}



/* Mobile-specific fixes */
@media (max-width: 768px) {
    .events-section {
        padding: 2rem 0;
    }
    
    .events-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .events-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin: 0 10px !important;
        width: calc(100% - 20px) !important;
    }
    
    .event-card {
        width: 100% !important;
        min-height: auto !important;
        margin: 0 !important;
    }
    
    .event-content {
        padding: 1rem !important;
    }
    
    .event-title {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
    }
    
    .event-date {
        font-size: 0.9rem !important;
    }
    
    .event-location {
        font-size: 0.9rem !important;
    }
    
    .event-category {
        font-size: 0.8rem !important;
        padding: 0.25rem 0.5rem !important;
    }
}

/* Event Suggestion Notification - Complete Redesign */
.event-suggestion-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    padding: 24px;
    z-index: 10000;
    width: 360px;
    animation: notificationSlideIn 0.4s ease-out;
    border: 1px solid #e5e7eb;
    display: none;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
}

.event-suggestion-notification[style*="display: block"] {
    display: block !important;
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
}

@keyframes notificationSlideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.notification-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.notification-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    width: 40px;
    height: 40px;
    background: #fef3c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-icon i {
    font-size: 1.2rem;
    color: #f59e0b;
}

.notification-close {
    margin-left: auto;
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.notification-close:hover {
    background: #f3f4f6;
    color: #6b7280;
}

.notification-header h4 {
    color: #111827;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    flex: 1;
}

.notification-content > p {
    color: #6b7280;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Add flying out animation */
.event-suggestion-notification.flying-out {
    animation: notificationFlyOut 0.5s ease-in forwards;
}

@keyframes notificationFlyOut {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-20px) scale(0.95);
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100px) scale(0.8);
        opacity: 0;
    }
}

.notification-actions {
    display: flex;
    gap: 12px;
}

.notification-btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
}

.notification-btn.btn-primary {
    background: #3b82f6;
    color: white;
}

.notification-btn.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.notification-btn.btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.notification-btn.btn-secondary:hover {
    background: #e5e7eb;
    color: #111827;
}

/* Responsive notification */
@media (max-width: 768px) {
    .event-suggestion-notification {
        bottom: 20px;
        right: 20px;
        left: 20px;
        width: auto;
        max-width: calc(100vw - 40px);
    }
    
    .notification-actions {
        flex-direction: column;
    }
    
    .notification-btn {
        width: 100%;
    }
}

/* Impressum Section */
.impressum-section {
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s ease, 
                transform 0.4s ease;
}

.impressum-section.expanded {
    max-height: 2000px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    padding: 1.5rem 0;
    margin-top: 1rem;
}

.impressum-content h3 {
    color: #1e3a8a;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 0.75rem;
}

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

.impressum-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.impressum-item h4 {
    color: #1e3a8a;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.impressum-item p {
    color: #374151;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

.impressum-item a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.impressum-item a:hover {
    color: #1e3a8a;
    text-decoration: underline;
}

.impressum-disclaimer {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    margin-bottom: 1.5rem;
}

.impressum-disclaimer h4 {
    color: #dc2626;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.impressum-disclaimer p {
    color: #374151;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.impressum-disclaimer p:last-child {
    margin-bottom: 0;
}

.impressum-footer {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.impressum-footer p {
    color: #6b7280;
    margin: 0;
    font-style: italic;
    font-size: 0.85rem;
}

/* Responsive Impressum */
@media (max-width: 768px) {
    .impressum-section {
        padding: 1rem 0;
    }
    
    .impressum-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .impressum-content h3 {
        font-size: 1.3rem;
    }
    
    .impressum-item,
    .impressum-disclaimer,
    .impressum-footer {
        padding: 0.875rem;
    }
}

/* ==========================
   Magnificent Product Page Styles
   ========================== */

/* Hero Section with Transforming Gradients */
.magnificent-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.85) 0%, rgba(26, 26, 46, 0.85) 25%, rgba(22, 33, 62, 0.85) 50%, rgba(15, 52, 96, 0.85) 75%, rgba(83, 52, 131, 0.85) 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background-image: url('../images/tbladefs/closeup.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3px) brightness(1.3);
    transform: scale(1.05); /* Prevent blur edge artifacts */
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.4) 0%, rgba(26, 26, 46, 0.4) 25%, rgba(22, 33, 62, 0.4) 50%, rgba(15, 52, 96, 0.4) 75%, rgba(83, 52, 131, 0.4) 100%);
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    bottom: 10%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(30px) rotate(240deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.badge-text {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e, #4ecdc4);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin: 20px 0;
    line-height: 0.9;
}

.title-line {
    display: block;
    background: linear-gradient(45deg, #ffffff, #e0e7ff, #c7d2fe);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 4s ease-in-out infinite;
}

.title-accent {
    background: linear-gradient(45deg, #ffffff, #e0e7ff, #c7d2fe);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 4s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.title-subtitle {
    font-size: 0.3em;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 10px;
    display: block;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255,255,255,0.3)); }
    50% { filter: drop-shadow(0 0 40px rgba(255,255,255,0.6)); }
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 30px 0;
    opacity: 0.9;
}

.highlight-text {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #667eea);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 5px;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.draw-status-magnificent {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.2);
    font-weight: 600;
    margin-top: 20px;
}

.photographer-credit {
    position: absolute;
    bottom: 80px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    z-index: 3;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.photographer-credit i {
    font-size: 0.9rem;
    opacity: 0.9;
}

.photographer-credit a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.photographer-credit a:hover {
    color: #fff;
    text-decoration: underline;
}

.photographer-credit-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 15px 0 30px 0;
}

.photographer-credit-inline i {
    font-size: 0.95rem;
    opacity: 0.9;
}

.photographer-credit-inline a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.photographer-credit-inline a:hover {
    color: #fff;
    text-decoration: underline;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
    margin: 0 auto 10px;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Dynamic Marquee */
.marquee {
    background: linear-gradient(90deg, rgba(99,102,241,0.15), rgba(236,72,153,0.15));
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    padding: 12px 0;
    color: #fff;
    font-weight: 800;
    letter-spacing: 1px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* LED Showcase Section */
/* replaced by scrolly section */

.led-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.led-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.led-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    animation: iconFloat 3s ease-in-out infinite;
}

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

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Scrollytelling Sticky Visual */
.scrolly {
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    padding: 80px 0;
}

.scrolly-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
}

.sticky-visual {
    position: sticky;
    top: 120px;
    align-self: start;
}

.sticky-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    transform: translateZ(0);
}

.sticky-frame img {
    width: 100%;
    display: block;
}

.sticky-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(60% 60% at 50% 50%, rgba(102,126,234,0.35), rgba(118,75,162,0.1) 60%, transparent 100%);
    mix-blend-mode: screen;
}

.scrolly-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.scrolly-block {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, background 0.3s ease;
}

.scrolly-block:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.1);
}

.scrolly-block h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', monospace;
    margin-bottom: 8px;
}

@media (max-width: 900px) {
    .scrolly-grid {
        grid-template-columns: 1fr;
    }
    .sticky-visual { position: static; }
}

/* Magnificent Gallery with Parallax */
.magnificent-gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.gallery-background {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.floating-image {
    position: absolute;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    filter: blur(1px);
    animation: floatImage 15s ease-in-out infinite;
}

.img-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    background-image: url('../images/Screenshot 2025-08-28 191203.png');
    animation-delay: 0s;
}

.img-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    background-image: url('../images/Screenshot 2025-08-28 202131.png');
    animation-delay: -5s;
}

.img-3 {
    width: 180px;
    height: 180px;
    bottom: 20%;
    left: 60%;
    background-image: url('../images/Screenshot 2025-08-28 211151.png');
    animation-delay: -10s;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(20px) rotate(-5deg); }
}

.gallery-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #667eea);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

/* Product Showcase Section */
.product-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 75%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.product-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(78, 205, 196, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: backgroundShift 20s ease-in-out infinite;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.product-gallery-grid .gallery-item {
    width: 100%;
    aspect-ratio: 1;
    min-height: 400px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ensure equal sizing for symmetry */
.product-gallery-grid .gallery-item:nth-child(1),
.product-gallery-grid .gallery-item:nth-child(2),
.product-gallery-grid .gallery-item:nth-child(3),
.product-gallery-grid .gallery-item:nth-child(4) {
    min-height: 400px;
}

/* Tilt left column (1st and 3rd items) to the left */
.product-gallery-grid .gallery-item:nth-child(1),
.product-gallery-grid .gallery-item:nth-child(3) {
    transform: rotate(-3deg);
}

/* Tilt right column (2nd and 4th items) to the right */
.product-gallery-grid .gallery-item:nth-child(2),
.product-gallery-grid .gallery-item:nth-child(4) {
    transform: rotate(3deg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 2;
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid transparent;
}

.product-gallery-grid .gallery-item {
    min-height: 300px;
}

.gallery-item.large {
    grid-column: span 2;
}

/* Gallery Image Wrapper */
.gallery-image-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    filter: brightness(0.9) contrast(1.1);
}

.gallery-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 48%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 52%
    );
    transform: rotate(45deg) translateX(-250%);
    transition: transform 0.8s ease, opacity 0.4s ease;
    pointer-events: none;
    opacity: 0;
    z-index: 1;
    will-change: transform, opacity;
}

/* Border Glow Effect */
.gallery-border-glow {
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(45deg, #667eea, #764ba2, #4ecdc4, #ff6b6b);
    background-size: 400% 400%;
    opacity: 0;
    z-index: -1;
    animation: gradientShift 3s ease infinite;
    transition: opacity 0.4s ease;
    filter: blur(10px);
}

/* Hover Effects */
.gallery-item:hover {
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.4), 0 0 40px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.5);
}

/* Hover effects with tilt preserved */
.product-gallery-grid .gallery-item:nth-child(1):hover,
.product-gallery-grid .gallery-item:nth-child(3):hover {
    transform: translateY(-15px) scale(1.05) rotate(-2deg);
}

.product-gallery-grid .gallery-item:nth-child(2):hover,
.product-gallery-grid .gallery-item:nth-child(4):hover {
    transform: translateY(-15px) scale(1.05) rotate(2deg);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.15);
    filter: brightness(1.1) contrast(1.2);
}

.gallery-item:hover .gallery-shine {
    transform: rotate(45deg) translateX(250%);
    opacity: 1;
    transition: transform 0.8s ease, opacity 0.2s ease;
}

.gallery-item:hover .gallery-border-glow {
    opacity: 0.6;
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease, background 0.4s ease;
    z-index: 3;
    backdrop-filter: blur(0px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    backdrop-filter: blur(2px);
}

.gallery-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-overlay-content i {
    font-size: 3rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.8);
    animation: iconPulse 2s ease-in-out infinite;
}

.gallery-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.9; }
}

/* Product Showcase Responsive */
@media (max-width: 768px) {
    .product-showcase {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.7);
    }
    
    .product-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .product-gallery-grid .gallery-item {
        min-height: 300px;
        aspect-ratio: 1;
        /* Reset tilts on mobile for better stacking */
        transform: none !important;
    }
    
    .gallery-item:hover {
        transform: translateY(-10px) scale(1.03) !important;
    }
    
    .gallery-overlay-content i {
        font-size: 2rem;
    }
    
    .gallery-title {
        font-size: 1.2rem;
    }
    
    .gallery-subtitle {
        font-size: 0.8rem;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    backdrop-filter: blur(10px);
}

.lightbox.visible { display: flex; }

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

/* Technical Excellence */
.technical-excellence {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.tech-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
    background-clip: padding-box;
}

.tech-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.tech-item:nth-child(1) { border-top-color: #ff6b6b; }
.tech-item:nth-child(2) { border-top-color: #4ecdc4; }
.tech-item:nth-child(3) { border-top-color: #667eea; }

.tech-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.tech-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.tech-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Community Impact */
.community-impact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    text-align: center;
}

.community-impact .section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #667eea);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.community-impact .section-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 50px;
}

.impact-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.impact-stat {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.impact-stat .stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #667eea);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 10px;
}

.impact-stat .stat-label {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
    
    .impact-stats {
        gap: 30px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .led-features {
        grid-template-columns: 1fr;
    }
}

/* Dynamic Tech Runway */
.tech-runway {
    background: linear-gradient(135deg, #f8fafc 0%, #e5ecf6 100%);
    padding: 80px 0 40px 0;
}

.runway-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.6rem;
    text-align: center;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.runway-wrap {
    overflow: hidden;
    position: relative;
}

.runway-track {
    display: flex;
    gap: 24px;
    padding: 20px;
    will-change: transform;
    animation: runwayScroll 30s linear infinite;
}

@keyframes runwayScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.runway-card {
    min-width: 320px;
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-top: 4px solid transparent;
    transition: transform .25s ease, box-shadow .25s ease;
    transform-style: preserve-3d;
}

.runway-card:hover {
    transform: translateY(-8px) rotateX(4deg) rotateY(-4deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.runway-card h3 {
    color: #111827;
    font-size: 1.2rem;
    margin: 10px 0 6px 0;
}

.runway-card p {
    color: #6b7280;
    line-height: 1.6;
}

.runway-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.runway-card[data-accent] .runway-icon {
    background: linear-gradient(135deg, var(--accent, #667eea), #764ba2);
}

/* Pause on hover */
.runway-wrap:hover .runway-track { animation-play-state: paused; }

@media (max-width: 480px) {
    .runway-card { min-width: 260px; }
}

/* Draw Explainer (horizontal timeline) */
.draw-explainer {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 75%, #0f3460 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.draw-explainer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: backgroundShift 20s ease-in-out infinite;
}

.draw-explainer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 30% 60%, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px, 60px 60px;
    animation: particleFloat 30s linear infinite;
    pointer-events: none;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes particleFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.draw-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.draw-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.draw-title i {
    font-size: 3rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #667eea);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: iconPulse 2s ease-in-out infinite;
}

.draw-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin: 0;
    background: linear-gradient(45deg, #ffffff, #e0e7ff, #c7d2fe);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255,255,255,0.3);
}

.draw-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.draw-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.step-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(15px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #667eea);
    border-radius: 20px 20px 0 0;
    transition: height 0.3s ease;
}

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

.step-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.4);
}

.step-card:hover::before {
    height: 6px;
}

.step-card:hover::after {
    left: 100%;
}

.step-card:hover .step-glow {
    opacity: 1;
    transform: scale(1.1);
}

.step-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
    z-index: 1;
}


.step-content {
    margin-top: 0;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #4ecdc4;
    border: 2px solid rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    color: #ff6b6b;
    border-color: rgba(255, 107, 107, 0.5);
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: white;
    font-family: 'Orbitron', monospace;
}

.step-content p {
    margin: 0 0 25px 0;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    font-size: 1rem;
}

.step-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.step-card:hover .step-details {
    opacity: 1;
    transform: translateY(0);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
}

.detail-item i {
    color: #4ecdc4;
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}

.detail-item span {
    color: rgba(255,255,255,0.9);
}

.draw-highlights {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

/* Draw Entry Section */
.draw-entry-section {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.entry-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.entry-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.highlight-item::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: left 0.6s ease;
}

.highlight-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-color: rgba(78, 205, 196, 0.5);
}

.highlight-item:hover::before {
    left: 100%;
}

.highlight-item i {
    font-size: 1.3rem;
    color: #4ecdc4;
    transition: all 0.3s ease;
}

.highlight-item:hover i {
    color: #ff6b6b;
    transform: scale(1.2);
}

.highlight-item span {
    position: relative;
    z-index: 2;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

@keyframes stepNumberGlow {
    0%, 100% { box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4); }
    50% { box-shadow: 0 12px 35px rgba(102, 126, 234, 0.7); }
}

@keyframes highlightPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Staggered animation for step cards */
.step-card:nth-child(1) { animation: stepCardFloat 6s ease-in-out infinite; }
.step-card:nth-child(2) { animation: stepCardFloat 6s ease-in-out infinite 1.5s; }
.step-card:nth-child(3) { animation: stepCardFloat 6s ease-in-out infinite 3s; }
.step-card:nth-child(4) { animation: stepCardFloat 6s ease-in-out infinite 4.5s; }


/* Highlight items pulse animation */
.highlight-item:nth-child(1) { animation: highlightPulse 4s ease-in-out infinite; }
.highlight-item:nth-child(2) { animation: highlightPulse 4s ease-in-out infinite 1.3s; }
.highlight-item:nth-child(3) { animation: highlightPulse 4s ease-in-out infinite 2.6s; }

/* Mobile Responsive for Draw Explainer */
@media (max-width: 768px) {
    .draw-explainer {
        padding: 60px 0;
    }
    
    .draw-header h2 {
        font-size: 2.2rem;
    }
    
    .draw-title {
        flex-direction: column;
        gap: 15px;
    }
    
    .draw-title i {
        font-size: 2.5rem;
    }
    
    .draw-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .draw-entry-section {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .entry-content h3 {
        font-size: 1.5rem;
    }
    
    .entry-content p {
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 0.875rem 2rem;
        font-size: 1.1rem;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
    
    .draw-highlights {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }
    
    .highlight-item {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .step-details {
        opacity: 1;
        transform: translateY(0);
    }
    
    .detail-item {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .step-card {
        animation: none;
    }
    
    
    .highlight-item {
        animation: none;
    }
}

.draw-note {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.entry-link {
    color: #4caf50;
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
}

.entry-link:hover {
    text-decoration: underline;
}

.hero-cta {
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #4caf50, #45a049);
    color: white;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
}

@media (max-width: 768px) {
    .draw-explainer { 
        padding: 60px 0; 
    }
    
    .draw-header h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline::before {
        display: none;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
}

/* Entry Page Styles */
.entry-body .header {
    background: rgba(255, 255, 255, 0.95);
}

.entry-body .header.scrolled {
    background: rgba(30, 58, 138, 0.95);
    color: white;
}

.entry-body .header.scrolled .logo {
    color: white;
}

.entry-body .header.scrolled .nav a {
    color: rgba(255, 255, 255, 0.9);
}

.entry-body .header.scrolled .nav a:hover {
    color: white;
}

.entry-body .header.scrolled .lang-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.entry-body .header.scrolled .lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.entry-body .header.scrolled .lang-btn i {
    color: white;
}

.entry-hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    color: white;
}

.entry-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-image: url('../images/tbladefs/closeup.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3px) brightness(1.3);
    transform: scale(1.05); /* Prevent blur edge artifacts */
}

.entry-hero .hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4) 0%, rgba(118, 75, 162, 0.4) 100%);
    z-index: 1;
}

.entry-hero .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.entry-hero .orb-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.entry-hero .orb-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.entry-hero .orb-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #96ceb4, #feca57);
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
}

.entry-hero .container {
    position: relative;
    z-index: 2;
}

.entry-hero .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.entry-hero .photographer-credit {
    position: absolute;
    bottom: -60px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    z-index: 3;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.entry-hero .hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.entry-hero .title-line {
    display: block;
}

.entry-hero .title-accent {
    background: linear-gradient(45deg, #ffffff, #e0e7ff, #c7d2fe);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 4s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.entry-hero .title-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 10px;
    opacity: 0.9;
}

.entry-hero .hero-description {
    font-size: 1.2rem;
    margin: 0 0 30px 0;
    opacity: 0.9;
    line-height: 1.6;
}

.entry-hero .highlight-text {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.draw-status-active {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4caf50;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    color: #4caf50;
}

.entry-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.entry-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    color: white;
}

.entry-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.entry-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.entry-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.entry-notice {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #ffc107;
}

.entry-notice i {
    color: #ffc107;
    margin-top: 2px;
}

.entry-form {
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="url"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.form-group input[type="text"]:focus,
.form-group input[type="url"]:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: rgba(255, 255, 255, 0.1);
}

.form-group input[type="text"]::placeholder,
.form-group input[type="url"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.help-text {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.help-text i {
    color: #e91e63;
}

.checkbox-group {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.terms-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.terms-link:hover {
    text-decoration: underline;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
}

.submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.entry-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #667eea;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.success-message {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.success-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    margin: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.success-content i {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 20px;
}

.success-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0 0 10px 0;
}

.success-content p {
    color: #6b7280;
    margin: 0 0 25px 0;
    line-height: 1.5;
}

.close-btn {
    padding: 12px 24px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.close-btn:hover {
    background: #5a67d8;
}

@media (max-width: 768px) {
    .entry-hero {
        padding: 100px 0 60px;
    }
    
    .entry-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .photographer-credit {
        bottom: 60px;
        right: 20px;
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    /* Hide photographer credit in hero section on mobile */
    .magnificent-hero .photographer-credit {
        display: none;
    }
    
    .entry-hero .photographer-credit {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        display: inline-flex;
    }
    
    /* Fix product page hero title on mobile */
    .magnificent-hero {
        padding-top: 100px;
    }
    
    .magnificent-hero .hero-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
        margin-top: 0;
    }
    
    .entry-card {
        margin: 0 20px;
        padding: 30px 20px;
    }
    
    .entry-header h2 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .entry-stats {
        flex-direction: column;
        gap: 20px;
    }
}
