/*
 * ---------------------------------------------
 * Info
 * ---------------------------------------------
 */
/* Frosted base panel */
.frosted-panel {
    background: rgba(20, 30, 40, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1000px;
    box-shadow: 0 0 20px rgba(125, 211, 252, 0.08);
    color: #e0f7fa;
}

/* Hero Section */
.etn-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #7dd3fc;
    text-shadow: 0 0 8px rgba(125, 211, 252, 0.4);
    margin-bottom: 1rem;
}

.etn-hero-subtext {
    font-size: 1.2rem;
    color: #abd9d7;
    margin-bottom: 1.5rem;
}

/* CTA Button */
.etn-cta-btn {
    display: inline-block;
    background-color: #7dd3fc;
    color: #0a0a0a;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(125, 211, 252, 0.4);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.etn-cta-btn:hover {
    background-color: #a8eaff;
    transform: scale(1.05);
}

/* About Section */
.etn-about-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .etn-about-grid {
        flex-direction: row;
    }
}

.etn-about-box {
    flex: 1;
}

.etn-section-heading {
    font-size: 1.5rem;
    color: #7dd3fc;
    margin-bottom: 1rem;
}

.etn-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    color: #cdeef5;
}

.etn-paragraph {
    color: #d0f0f8;
    font-size: 1rem;
    line-height: 1.6;
}

/* Prize Section */
.etn-prize-list p {
    font-size: 1.1rem;
    margin: 0.3rem 0;
}

.etn-note {
    margin-top: 1rem;
    color: #abd9d7;
}

.etn-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 0 12px rgba(125, 211, 252, 0.2);
    margin-top: 1rem;
}

.etn-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 1rem;
}
.edgy-hero {
    padding: 1.5rem 2rem;
    background: linear-gradient(to bottom, rgba(10, 14, 20, 0.95), rgba(20, 30, 40, 0.9));
    box-shadow: inset 0 -4px 12px rgba(0, 255, 255, 0.1);
}

.etn-hero-title-glow {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #7dd3fc;
    letter-spacing: 0.1em;
    text-shadow: 0 0 12px rgba(125, 211, 252, 0.7);
}

.edgy-btn-glow {
    border: 2px solid #7dd3fc;
    background-color: transparent;
    color: #7dd3fc;
    padding: 0.75rem 2rem;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
    box-shadow: 0 0 16px rgba(125, 211, 252, 0.3);
}

.edgy-btn-glow:hover {
    background-color: #7dd3fc;
    color: #0a0a0a;
    transform: scale(1.05);
}
.edgy-box {
    background: rgba(18, 24, 34, 0.85);
    border: 1px solid #7dd3fc55;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(125, 211, 252, 0.1);
    transition: transform 0.2s ease;
}

.edgy-box:hover {
    transform: scale(1.02);
    box-shadow: 0 0 18px rgba(125, 211, 252, 0.25);
}
.etn-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(125, 211, 252, 0.3);
    border: 2px solid rgba(125, 211, 252, 0.3);
}

.etn-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Optional retro scanline effect */
.etn-video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        rgba(255, 255, 255, 0.02),
        rgba(255, 255, 255, 0.02) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
}
.etn-prize-list strong {
    color: #ffffff;
    background: linear-gradient(45deg, #7dd3fc, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}
.etn-video-container iframe {
    border-radius: 1rem;
    box-shadow: 0 0 24px rgba(125, 211, 252, 0.15);
}

