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

:root {
    --vh: 1vh;
    --navbar-height: 80px;
    --container-padding: 20px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo .logo-image {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.4));
}

.nav-logo .logo-image:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(0, 255, 255, 0.8));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    gap: clamp(1.2rem, calc(1.2rem + (0.8 * ((100vw - 1025px) / 75))), 2rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.nav-link:hover {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    transition: width 0.3s ease;
}

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

.nav-register-btn {
    background: linear-gradient(45deg, #00ffff, #00ff00);
    color: #000000;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.nav-register-btn::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;
}

.nav-register-btn:hover::before {
    left: 100%;
}

.nav-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.4);
    background: linear-gradient(45deg, #00ff00, #00ffff);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #00ffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: var(--navbar-height) 0 40px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(0, 255, 0, 0.1) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 120px);
}

.hero-title {
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-logo {
    max-width: 1200px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 40px rgba(0, 255, 255, 0.5));
    animation: logo-glow 3s ease-in-out infinite;
    transform: scale(1.05);
}

.title-sub {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
    animation: subtitle-glow 4s ease-in-out infinite;
    white-space: nowrap;
    text-transform: uppercase;
}

.bracket {
    color: #00ff00;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
    animation: bracket-pulse 2s ease-in-out infinite;
}

.subtitle-text {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
    margin: 0 0.5rem;
    text-transform: uppercase;
}

.hero-info {
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-info p {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #cccccc;
}

.highlight {
    color: #00ffff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #00ffff;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.countdown-container {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
    max-width: 400px;
    width: 100%;
}

.countdown-title {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    min-width: 50px;
}

.countdown-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
    line-height: 1;
}

.countdown-label {
    font-size: 0.7rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #000000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.6);
    transform: scale(1.05);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 60px rgba(0, 255, 255, 0.9);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover .button-glow {
    left: 100%;
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* Discord Button */
.discord-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: #5865F2;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.discord-button::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;
}

.discord-button:hover::before {
    left: 100%;
}

.discord-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 40px rgba(88, 101, 242, 0.6);
    background: #4752C4;
}

.discord-button i {
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    text-decoration: none;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid #00ffff;
    border-bottom: 2px solid #00ffff;
    transform: rotate(45deg);
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.title-underline {
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

/* Contact Support Section */
.contact-support {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.05) 0%, rgba(0, 255, 0, 0.05) 100%);
    padding: 60px 0;
}

.contact-card {
    background: rgba(255, 0, 255, 0.05);
    border: 2px solid rgba(255, 0, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.contact-card:hover::before {
    transform: translateX(100%);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.2);
    border-color: rgba(255, 0, 255, 0.4);
}

.contact-header {
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 3rem;
    color: #ff00ff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.contact-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.contact-header p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 0, 255, 0.05);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 0, 255, 0.1);
    border-color: rgba(255, 0, 255, 0.4);
    transform: translateY(-3px);
}

.method-icon {
    font-size: 2rem;
    color: #ff00ff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 255, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(255, 0, 255, 0.3);
}

.method-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.method-info .contact-link {
    color: #00ffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.method-info .contact-link:hover {
    color: #00ff00;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
    transform: scale(1.05);
}

.contact-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 10px;
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-note i {
    color: #00ff00;
    font-size: 1.2rem;
}

/* About Section */
.about {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(255, 0, 255, 0.05) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    justify-items: center;
}

.about-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    gap: 2rem;
}

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Prizes Section */
.prizes {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.05) 0%, rgba(0, 255, 0, 0.05) 100%);
}

.prizes-content {
    display: grid;
    gap: 4rem;
}

.prize-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    justify-items: center;
    align-items: stretch;
}

.prize-category {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.prize-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.prize-category:hover::before {
    transform: translateX(100%);
}

.prize-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
    border-color: rgba(0, 255, 255, 0.3);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
}

.category-icon {
    font-size: 2rem;
    color: #00ffff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.category-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    flex-grow: 1;
}

.badge {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-highlight {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.highlight-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.category-details p {
    color: #cccccc;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.category-description {
    color: #999999 !important;
    font-size: 0.9rem !important;
    line-height: 1.6;
}

.prize-breakdown {
    display: grid;
    gap: 1rem;
}

.prize-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.prize-item:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateX(5px);
}

.prize-medal {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.first-place .prize-medal {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.second-place .prize-medal {
    color: #c0c0c0;
    background: rgba(192, 192, 192, 0.1);
}

.third-place .prize-medal {
    color: #cd7f32;
    background: rgba(205, 127, 50, 0.1);
}

.prize-position {
    font-weight: 600;
    color: #ffffff;
    flex-grow: 1;
}

.prize-item .prize-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.premium-features {
    display: grid;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateX(5px);
}

.feature-item i {
    color: #00ffff;
    font-size: 0.8rem;
}

.feature-item span {
    color: #cccccc;
    font-weight: 500;
}

.participant-benefits {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 2rem;
}

.benefits-header {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-icon {
    font-size: 3rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.benefits-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.benefits-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 500;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    justify-items: center;
    align-items: stretch;
}

.benefit-card {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.benefit-card:hover::before {
    transform: translateX(100%);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.3);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.benefit-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}

/* Timeline Section */
.timeline {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.05) 0%, rgba(0, 255, 255, 0.05) 100%);
}

/* Event Calendar (cards) */
.timeline-subtitle {
    color: #9aa3af;
    max-width: 900px;
    margin: 0.5rem auto 0;
}

.event-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.event-card {
    background: #0d0f12;
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.25s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.event-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.15);
}

.event-card-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.event-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00aaff;
    background: rgba(0, 170, 255, 0.12);
    border: 1px solid rgba(0, 170, 255, 0.25);
    border-radius: 8px;
}

.event-date-text {
    color: #00ffff;
    font-weight: 600;
}

.event-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.event-desc {
    color: #a0a0a0;
    font-size: 0.95rem;
}

/* Registration Details */
.registration {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(0, 255, 0, 0.05) 100%);
}

.registration-subtitle {
    color: #9aa3af;
    max-width: 900px;
    margin: 0.5rem auto 0;
}

.registration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.registration-card {
    background: #0d0f12;
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.25s ease;
}

.registration-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.15);
}

.registration-card-header {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.registration-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00aaff;
    background: rgba(0, 170, 255, 0.12);
    border: 1px solid rgba(0, 170, 255, 0.25);
    border-radius: 14px;
    font-size: 1.2rem;
}

.registration-icon .currency-symbol {
    font-weight: 800;
    font-size: 2.2rem;
    line-height: 1;
}

.registration-icon.success {
    color: #16a34a;
    background: rgba(22, 163, 74, 0.12);
    border-color: rgba(22, 163, 74, 0.25);
}

.registration-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.6rem;
}

.registration-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 0.6rem;
}

.registration-note {
    color: #a0a0a0;
}

.apply-button {
    display: inline-block;
    margin-top: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: #22c55e;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.apply-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.25);
}

.registration-warning {
    margin-top: 2rem;
    padding: 1.2rem 1.4rem;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: #cbd5e1;
}

.warning-icon {
    color: #f59e0b;
    font-size: 1.1rem;
    line-height: 1;
}

.timeline-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-card {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.timeline-card:hover::before {
    transform: translateX(100%);
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.3);
}

.event-arrow {
    font-size: 1.5rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.event-date {
    color: #00ffff;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    flex-shrink: 0;
    min-width: 200px;
}

.event-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-grow: 1;
}

.event-location {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
    font-style: italic;
}

.timeline-divider {
    width: 100%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 1rem 0;
}

/* Organizers Section */
.organizers {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.05) 0%, rgba(0, 255, 255, 0.05) 100%);
}

.organizers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
    align-items: stretch;
    max-width: 1500px;
    margin: 0 auto;
}

.organizer-card {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

.organizer-card:hover::before {
    transform: translateX(100%);
}

.organizer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.3);
}

.organizer-card.host {
    border-color: rgba(255, 0, 255, 0.3);
    background: rgba(255, 0, 255, 0.05);
}

.organizer-card.host .organizer-logo-img {
    max-width: 350px;
    max-height: 200px;
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.organizer-card.host:hover {
    box-shadow: 0 15px 30px rgba(255, 0, 255, 0.2);
    border-color: rgba(255, 0, 255, 0.5);
}

.organizer-logo-img {
    max-width: 250px;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0.9) contrast(1.1) drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.organizer-card:hover .organizer-logo-img {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2) drop-shadow(0 0 25px rgba(0, 255, 255, 0.6));
}

.organizer-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.4;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.organizer-card p {
    color: #00ffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: auto;
}

.organizer-card.host p {
    color: #ff00ff;
}

/* Training Sessions Section */
.training {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.05) 0%, rgba(0, 255, 255, 0.05) 100%);
}

.training-subtitle {
    color: #9aa3af;
    max-width: 900px;
    margin: 0.5rem auto 0;
}

.training-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.training-card {
    background: rgba(0, 255, 0, 0.05);
    border: 2px solid rgba(0, 255, 0, 0.2);
    border-radius: 20px;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.training-card:hover::before {
    transform: translateX(100%);
}

.training-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 255, 0, 0.2);
    border-color: rgba(0, 255, 0, 0.4);
}

.training-header {
    background: linear-gradient(45deg, #00ff00, #00ffff);
    color: #000000;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.training-icon {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.training-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.training-date {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.training-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.training-time,
.training-location {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(0, 255, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 0, 0.2);
    transition: all 0.3s ease;
}

.training-time:hover,
.training-location:hover {
    background: rgba(0, 255, 0, 0.1);
    transform: translateX(5px);
}

.training-time i,
.training-location i {
    font-size: 1.2rem;
    color: #00ff00;
    width: 20px;
    text-align: center;
}

.training-time span,
.training-location span {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.training-description {
    margin-bottom: 1.5rem;
}

.training-description p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}

.training-agenda {
    margin-bottom: 2rem;
    flex: 1;
}

.training-agenda h4 {
    color: #00ff00;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.training-agenda ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.training-agenda li {
    color: #cccccc;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.training-agenda li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff00;
    font-weight: bold;
    font-size: 1.1rem;
}

.training-join-btn {
    background: linear-gradient(45deg, #00ff00, #00ffff);
    color: #000000;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
}

.training-join-btn::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;
}

.training-join-btn:hover::before {
    left: 100%;
}

.training-join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 0, 0.4);
    background: linear-gradient(45deg, #00ffff, #00ff00);
}

.training-join-btn i {
    font-size: 1.1rem;
}

/* Competition Categories Section */
.categories {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(255, 0, 255, 0.05) 100%);
}

.categories-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.category-card {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.3);
}

.category-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    background: #000;
}

.category-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-video video {
    transform: scale(1.05);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 255, 0, 0.1) 100%);
    color: #00ffff;
    font-size: 3rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.category-card:hover .video-placeholder::before {
    transform: translateX(100%);
}

.video-placeholder i {
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.video-placeholder span {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

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

.category-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.category-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.category-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(45deg, #00ffff, #00ff00);
    color: #000000;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, #ff00ff, #00ff00);
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
    z-index: 2;
    white-space: nowrap;
}

.category-link {
    color: #00ffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

.category-link:hover {
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.05) 0%, rgba(0, 255, 0, 0.05) 100%);
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
}

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

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

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.faq-toggle i {
    color: #00ffff;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding: 0 2rem 2rem;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    padding: 3rem 0 1rem;
}

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

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #00ffff;
}

.footer-desc {
    color: #cccccc;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 0.5rem 1rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease;
}

.footer-links a:hover { color: #00ffff; }

.footer-bottombar {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    color: #999999;
}

.bottom-left { display: flex; align-items: center; gap: 0.6rem; }
.bottom-logo { height: 28px; width: auto; filter: drop-shadow(0 0 6px rgba(0,255,255,0.4)); }
.bottom-brand { color: #e5e7eb; font-weight: 700; }

.bottom-right { display: flex; gap: 1rem; justify-content: end; }
.bottom-right a { color: #9ca3af; text-decoration: none; }
.bottom-right a:hover { color: #00ffff; }

/* Deadline Extension Popup */
.deadline-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.deadline-popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.3);
}

.deadline-popup.show .popup-content {
    transform: scale(1) translateY(0);
}

.popup-header {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #000000;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.popup-icon {
    font-size: 2rem;
    color: #000000;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.popup-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-close {
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

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

.popup-body {
    padding: 2rem;
    text-align: center;
}

.popup-message {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.popup-message strong {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    font-weight: 700;
}

.popup-submessage {
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.popup-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.popup-register-btn {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #000000;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.popup-register-btn::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;
}

.popup-register-btn:hover::before {
    left: 100%;
}

.popup-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.4);
    background: linear-gradient(45deg, #ff00ff, #00ffff);
}

.popup-dismiss {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-dismiss:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.popup-discord-btn {
    background: #5865F2;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.popup-discord-btn::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;
}

.popup-discord-btn:hover::before {
    left: 100%;
}

.popup-discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
    background: #4752C4;
}

.popup-discord-btn i {
    font-size: 1.1rem;
}

/* Help Popup Styles */
.help-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.help-popup.show {
    opacity: 1;
    visibility: visible;
}

.help-popup .popup-content {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 255, 0, 0.1) 100%);
    border: 2px solid rgba(255, 0, 255, 0.3);
    border-radius: 20px;
    padding: 0;
    max-width: 550px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(255, 0, 255, 0.3);
}

.help-popup.show .popup-content {
    transform: scale(1) translateY(0);
}

.help-popup .popup-header {
    background: linear-gradient(45deg, #ff00ff, #00ff00);
    color: #000000;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.help-popup .popup-icon {
    font-size: 2rem;
    color: #000000;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.help-popup .popup-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.help-popup .popup-close {
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.help-popup .popup-close:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

.help-popup .popup-body {
    padding: 2rem;
    text-align: center;
}

.help-popup .popup-message {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.help-popup .popup-submessage {
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.contact-info {
    background: rgba(255, 0, 255, 0.05);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 0, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.contact-item i {
    font-size: 1.5rem;
    color: #ff00ff;
    width: 30px;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-label {
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-link {
    color: #00ffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.contact-link:hover {
    color: #00ff00;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
    transform: scale(1.05);
}

.popup-contact-btn {
    background: #ff00ff;
    color: #000000;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.popup-contact-btn::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;
}

.popup-contact-btn:hover::before {
    left: 100%;
}

.popup-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 255, 0.4);
    background: #e600e6;
}

.popup-call-btn {
    background: #00ff00;
    color: #000000;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.popup-call-btn::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;
}

.popup-call-btn:hover::before {
    left: 100%;
}

.popup-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 0, 0.4);
    background: #00e600;
}

.popup-contact-btn i,
.popup-call-btn i {
    font-size: 1.1rem;
}

/* Popup Animation */
@keyframes popupSlideIn {
    0% {
        transform: scale(0.8) translateY(50px);
        opacity: 0;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes popupSlideOut {
    0% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    100% {
        transform: scale(0.8) translateY(50px);
        opacity: 0;
    }
}

/* Responsive Popup */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        max-width: 400px;
    }
    
    .popup-header {
        padding: 1.2rem 1.5rem;
    }
    
    .popup-header h3 {
        font-size: 1.3rem;
    }
    
    .popup-body {
        padding: 1.5rem;
    }
    
    .popup-message {
        font-size: 1.1rem;
    }
    
    .popup-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .popup-register-btn,
    .popup-discord-btn,
    .popup-dismiss {
        width: 100%;
        max-width: 200px;
    }

    /* Help Popup Mobile Styles */
    .help-popup .popup-content {
        width: 95%;
        max-width: 380px;
        margin: 0 auto;
    }
    
    .help-popup .popup-header {
        padding: 1.2rem 1.5rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .help-popup .popup-header h3 {
        font-size: 1.3rem;
        flex: 1;
        min-width: 0;
    }
    
    .help-popup .popup-icon {
        font-size: 2.2rem;
        flex-shrink: 0;
    }
    
    .help-popup .popup-close {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .help-popup .popup-body {
        padding: 1.5rem;
    }
    
    .help-popup .popup-message {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .help-popup .popup-submessage {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .help-popup .contact-info {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .help-popup .contact-item {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .help-popup .contact-item:last-child {
        margin-bottom: 0;
    }
    
    .help-popup .contact-item i {
        font-size: 1.3rem;
        width: 25px;
    }
    
    .help-popup .contact-label {
        font-size: 0.8rem;
    }
    
    .help-popup .contact-link {
        font-size: 1rem;
        word-break: break-all;
    }
    
    .help-popup .popup-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .help-popup .popup-contact-btn,
    .help-popup .popup-call-btn,
    .help-popup .popup-dismiss {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        justify-content: center;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        padding: 2rem;
    }

    .contact-header h3 {
        font-size: 1.5rem;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .method-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }

    .training-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .training-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .training-header {
        padding: 1.5rem;
    }

    .training-header h3 {
        font-size: 1.5rem;
    }

    .training-content {
        padding: 1.5rem;
    }

    .training-join-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .popup-content {
        width: 98%;
        max-width: 350px;
    }
    
    .popup-header {
        padding: 1rem 1.2rem;
    }
    
    .popup-header h3 {
        font-size: 1.2rem;
    }
    
    .popup-body {
        padding: 1.2rem;
    }
    
    .popup-message {
        font-size: 1rem;
    }
    
    .popup-submessage {
        font-size: 0.9rem;
    }

    /* Help Popup Extra Small Mobile */
    .help-popup .popup-content {
        width: 98%;
        max-width: 350px;
    }
    
    .help-popup .popup-header {
        padding: 1rem 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .help-popup .popup-header h3 {
        font-size: 1.2rem;
        order: 2;
    }
    
    .help-popup .popup-icon {
        font-size: 2rem;
        order: 1;
    }
    
    .help-popup .popup-close {
        position: absolute;
        top: 0.8rem;
        right: 0.8rem;
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        order: 3;
    }
    
    .help-popup .popup-body {
        padding: 1.2rem;
    }
    
    .help-popup .popup-message {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }
    
    .help-popup .popup-submessage {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }
    
    .help-popup .contact-info {
        padding: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .help-popup .contact-item {
        padding: 0.7rem;
        margin-bottom: 0.7rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .help-popup .contact-item i {
        font-size: 1.2rem;
        width: auto;
    }
    
    .help-popup .contact-label {
        font-size: 0.75rem;
    }
    
    .help-popup .contact-link {
        font-size: 0.9rem;
        word-break: break-all;
    }
    
    .help-popup .popup-actions {
        gap: 0.6rem;
    }
    
    .help-popup .popup-contact-btn,
    .help-popup .popup-call-btn,
    .help-popup .popup-dismiss {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes subtitle-glow {
    0%, 100% {
        text-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 35px rgba(255, 255, 255, 0.8);
        transform: scale(1.02);
    }
}

@keyframes bracket-pulse {
    0%, 100% {
        text-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 30px rgba(0, 255, 0, 1);
        transform: scale(1.1);
    }
}

@keyframes logo-glow {
    0%, 100% {
        filter: drop-shadow(0 0 40px rgba(0, 255, 255, 0.5));
        transform: scale(1.05);
    }
    50% {
        filter: drop-shadow(0 0 60px rgba(0, 255, 255, 0.8));
        transform: scale(1.08);
    }
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

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

/* Responsive Design */

/* Large Tablets and Small Laptops */
@media (max-width: 1024px) {
    :root {
        --container-padding: 15px;
    }

        .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        align-items: center;
        gap: 1rem;
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-link {
        padding: 0.8rem 0;
        width: 100%;
        justify-content: center;
    }

    .nav-register-btn {
        margin-top: 1rem;
        padding: 1rem 2rem;
        font-size: 1rem;
        width: auto;
        justify-content: center;
    }

    .hero-logo {
        max-width: 400px;
        margin-bottom: 1rem;
    }

    .nav-logo .logo-image {
        height: 55px;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .hero-logo {
        max-width: 800px;
    }
    
    .prize-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .organizers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .title-sub {
        font-size: 1.8rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

    .subtitle-text {
        margin: 0 0.3rem;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 15px;
        min-height: calc(100vh - 90px);
    }

    .hero {
        padding: 60px 0 30px;
    }

    .hero-info p {
        font-size: 1rem;
    }

    .event-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .timeline-subtitle {
        padding: 0 1rem;
    }

    .registration-grid {
        grid-template-columns: 1fr;
    }

    .footer-columns {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .countdown-container {
        max-width: 350px;
        padding: 1.2rem;
    }

    .countdown-timer {
        gap: 0.6rem;
    }

    .countdown-item {
        min-width: 45px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.6rem;
    }

    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .discord-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: center;
        text-align: center;
    }

    .prize-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
    }

    .prize-category {
        padding: 1.5rem;
        width: 100%;
        max-width: 400px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        justify-items: center;
    }

    .benefit-card {
        padding: 1.5rem;
        width: 100%;
        max-width: 300px;
    }

        .organizers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        justify-items: center;
        max-width: 100%;
    }

    .organizer-card {
        width: 100%;
        max-width: 300px;
        min-height: 350px;
    }

    .organizer-logo-img {
        max-width: 230px;
        max-height: 90px;
    }

    .organizer-card.host .organizer-logo-img {
        max-width: 200px;
        max-height: 110px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /*.category-video {
        height: 200px;
    }*/

    .category-content {
        padding: 1.5rem;
    }

    .category-content h3 {
        font-size: 1.3rem;
    }

    .faq-question {
        padding: 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.5rem;
    }

    .timeline-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .event-arrow {
        font-size: 1.2rem;
        width: 30px;
    }

    .event-date {
        min-width: auto;
        font-size: 1rem;
    }

    .event-name {
        font-size: 1.1rem;
    }

    .timeline-divider {
        max-width: 400px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 50px;
    }

    .timeline-date {
        margin-bottom: 1rem;
    }

    .timeline-marker {
        left: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .prize-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .prize-category {
        padding: 1.5rem;
    }

    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .category-header h3 {
        font-size: 1.3rem;
    }

    .highlight-amount {
        font-size: 1.3rem;
    }

    .prize-item {
        padding: 0.8rem;
    }

    .feature-item {
        padding: 0.8rem;
    }

    .participant-benefits {
        padding: 2rem;
    }

    .benefits-header h3 {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .sponsor-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 50px 0 20px;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 10px;
        min-height: calc(100vh - 70px);
    }

    .hero-logo {
        max-width: 280px;
        margin-bottom: 0.8rem;
    }

    .nav-logo .logo-image {
        height: 45px;
    }

    .title-sub {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
        margin-bottom: 0.8rem;
    }

    .subtitle-text {
        margin: 0 0.2rem;
    }

    .hero-info p {
        font-size: 0.9rem;
    }

    .hero-stats {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .countdown-container {
        max-width: 300px;
        padding: 1rem;
    }

    .countdown-timer {
        gap: 0.4rem;
    }

    .countdown-item {
        min-width: 40px;
    }

    .countdown-number {
        font-size: 1.2rem;
    }

    .countdown-label {
        font-size: 0.5rem;
    }

    .countdown-title {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .timeline-card {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        padding: 1.2rem;
    }

    .event-arrow {
        font-size: 1rem;
        width: 25px;
    }

    .event-date {
        min-width: auto;
        font-size: 0.9rem;
    }

    .event-name {
        font-size: 1rem;
    }

    .event-location {
        font-size: 0.8rem;
    }

    .timeline-divider {
        max-width: 300px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }

    .event-cards {
        grid-template-columns: 1fr;
    }

    .stat-item {
        text-align: center;
        width: 100%;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
        text-align: center;
    }

    .prize-categories {
        grid-template-columns: 1fr;
        gap: 1rem;
        justify-items: center;
    }

    .prize-category {
        padding: 1.2rem;
        width: 100%;
        max-width: 350px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        justify-items: center;
    }

    .benefit-card {
        padding: 1.2rem;
        width: 100%;
        max-width: 280px;
    }

    .organizers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        justify-items: center;
        max-width: 100%;
    }

    .organizer-card {
        width: 100%;
        max-width: 280px;
        min-height: 320px;
    }

    .organizer-logo-img {
        max-width: 110px;
        max-height: 80px;
    }

    .organizer-card.host .organizer-logo-img {
        max-width: 130px;
        max-height: 90px;
    }

    .benefits-icon {
        font-size: 2.5rem;
    }

    .benefit-card {
        padding: 1.2rem;
    }

    .benefit-icon {
        font-size: 2rem;
    }

    .benefit-card h4 {
        font-size: 1.1rem;
    }

    .participant-benefits {
        padding: 1.5rem;
    }

    .benefits-header h3 {
        font-size: 1.8rem;
    }

    .registration-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-bottombar {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.8rem;
    }

    .bottom-left {
        justify-content: center;
    }

    .bottom-right {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .training-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .training-card {
        max-width: 100%;
    }

    .training-header {
        padding: 1.2rem;
    }

    .training-header h3 {
        font-size: 1.3rem;
    }

    .training-date {
        font-size: 1rem;
    }

    .training-content {
        padding: 1.2rem;
    }

    .training-time,
    .training-location {
        padding: 0.6rem;
        margin-bottom: 0.8rem;
    }

    .training-description p {
        font-size: 0.9rem;
    }

    .training-agenda h4 {
        font-size: 1rem;
    }

    .training-agenda li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    :root {
        --container-padding: 10px;
    }
    
    .hero-logo {
        max-width: 250px;
    }
    
    .title-sub {
        font-size: 1rem;
        letter-spacing: 0.3px;
    }
    
    .subtitle-text {
        margin: 0 0.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .discord-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .training-header h3 {
        font-size: 1.2rem;
    }
    
    .training-date {
        font-size: 0.9rem;
    }
    
    .popup-content {
        width: 95%;
        max-width: 320px;
    }
    
    .popup-header {
        padding: 0.8rem 1rem;
    }
    
    .popup-header h3 {
        font-size: 1.1rem;
    }
    
    .popup-body {
        padding: 1rem;
    }
    
    .popup-message {
        font-size: 0.9rem;
    }
    
    .popup-submessage {
        font-size: 0.8rem;
    }

    /* Help Popup Ultra Small Mobile */
    .help-popup .popup-content {
        width: 95%;
        max-width: 320px;
    }
    
    .help-popup .popup-header {
        padding: 0.8rem 1rem;
        gap: 0.6rem;
    }
    
    .help-popup .popup-header h3 {
        font-size: 1.1rem;
    }
    
    .help-popup .popup-icon {
        font-size: 1.8rem;
    }
    
    .help-popup .popup-close {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        top: 0.6rem;
        right: 0.6rem;
    }
    
    .help-popup .popup-body {
        padding: 1rem;
    }
    
    .help-popup .popup-message {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 0.6rem;
    }
    
    .help-popup .popup-submessage {
        font-size: 0.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .help-popup .contact-info {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .help-popup .contact-item {
        padding: 0.6rem;
        margin-bottom: 0.6rem;
        gap: 0.4rem;
    }
    
    .help-popup .contact-item i {
        font-size: 1.1rem;
    }
    
    .help-popup .contact-label {
        font-size: 0.7rem;
    }
    
    .help-popup .contact-link {
        font-size: 0.85rem;
    }
    
    .help-popup .popup-actions {
        gap: 0.5rem;
    }
    
    .help-popup .popup-contact-btn,
    .help-popup .popup-call-btn,
    .help-popup .popup-dismiss {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}

/* Landscape Mobile Devices */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 40px 0 20px;
    }
    
    .hero-content {
        min-height: calc(100vh - 60px);
    }
    
    .hero-logo {
        max-width: 500px;
        margin-bottom: 0.5rem;
    }
    
    .title-sub {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-stats {
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .discord-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    /* Help Popup Landscape Mobile */
    .help-popup .popup-content {
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .help-popup .popup-header {
        padding: 1rem 1.5rem;
        flex-direction: row;
        text-align: left;
    }
    
    .help-popup .popup-header h3 {
        order: 2;
        flex: 1;
    }
    
    .help-popup .popup-icon {
        order: 1;
        font-size: 2rem;
    }
    
    .help-popup .popup-close {
        order: 3;
        position: static;
        width: 35px;
        height: 35px;
    }
    
    .help-popup .popup-body {
        padding: 1.2rem 1.5rem;
    }
    
    .help-popup .contact-item {
        flex-direction: row;
        text-align: left;
    }
    
    .help-popup .contact-item i {
        width: 25px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .nav-logo .logo-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-indicator,
    .cta-button,
    .discord-button,
    .training-join-btn,
    .popup-register-btn,
    .popup-discord-btn,
    .popup-dismiss,
    .deadline-popup,
    .help-popup {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .section-title {
        color: black !important;
        background: none !important;
        -webkit-background-clip: unset !important;
        -webkit-text-fill-color: unset !important;
    }
    
    .hero-logo {
        filter: none !important;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-grid {
        animation: none !important;
    }
    
    .hero-particles {
        animation: none !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    /* Already optimized for dark theme */
}

/* Light Mode Support (if needed) */
@media (prefers-color-scheme: light) {
    /* Keep dark theme as primary */
}