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

:root {
    /* NPO Radio 2 Colors */
    --radio2-red: #e60012;
    --radio2-dark-red: #c20010;
    --radio2-white: #ffffff;
    
    /* PowNed Colors */
    --powned-pink: #ff006b;
    --powned-black: #1a1a1a;
    --powned-dark-pink: #e6005f;
    
    /* Additional Colors */
    --gradient-primary: linear-gradient(135deg, var(--radio2-red) 0%, var(--powned-pink) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--powned-black) 0%, #333333 100%);
    --text-light: #f8f9fa;
    --text-dark: #212529;
    --text-gray: #6c757d;
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 15px 60px rgba(0, 0, 0, 0.3);
    
    /* Fonts */
    --font-primary: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--radio2-red);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    box-sizing: border-box;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0;
    padding: 0;
}

.nav-logo img {
    height: 50px;
    width: auto;
    filter: brightness(1.1);
    display: block;
    margin: 0 auto;
    padding: 0;
    vertical-align: middle;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--radio2-red);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #e60012 0%, #ff1744 35%, #ff006b 65%, #e91e63 100%);
    position: relative;
    padding: 80px 0 0 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 0;
}

.hero-eddy-photo {
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto;
    max-width: 45%;
    height: 85%;
    z-index: 1;
}

.hero-eddy-photo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4));
}

.hero-background {
    display: none;
}

.hero-image {
    display: none;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    min-height: auto;
    width: 100%;
}

.hero-text {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-family: Impact, "Arial Black", sans-serif;
    font-size: clamp(3rem, 10vw, 8rem);
    color: white;
    text-transform: uppercase;
    margin: 0 auto 1px auto;
    filter: drop-shadow(0 3px 20px rgba(0, 0, 0, 0.4));
    letter-spacing: 2px;
    text-align: center;
    margin-top:8px;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.95);
    
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 100%;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 45px auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    text-align: center;
    width: 100%;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    margin: 0 auto 50px auto;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.95);
    color: #e60012;
    font-weight: 700;
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
    background: #ffffff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
}



.btn-win {
    background: linear-gradient(135deg, #e60012 0%, #ff1744 100%);
    color: white;
    font-size: 1.8rem;
    font-weight: 900;
    padding: 20px 45px;
    box-shadow: 0 8px 25px rgba(230, 0, 18, 0.5);
    border: 3px solid white;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-win::before {
    content: '';
    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;
}

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

.btn-win:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(230, 0, 18, 0.7);
    background: linear-gradient(135deg, #ff1744 0%, #e60012 100%);
    border-color: #FFD700;
}

.hero-live {
    width: 100%;
    display: flex;
    justify-content: center;
}

.live-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    width: auto;
}

.live-dot {
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.3);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
}

.hero-visual {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 200px;
    z-index: 1;
}

.radio-icon {
    width: auto;
    height: clamp(140px, 15vw, 240px);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 2.5s ease-in-out infinite;
    margin-bottom: 450px;
    margin-left: 80px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    position: relative;
    color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 30px;
    color: white;
    line-height: 1.2;
    font-weight: 700;
}

.highlight {
    color: var(--powned-pink);
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 0, 107, 0.6);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.about-slogan {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    color: white !important;
    margin-top: 30px !important;
}

.about-image .stations-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.station-logo {
    width: auto;
    filter: drop-shadow(var(--shadow-light));
    transition: transform 0.3s ease;
}

.npo-radio2-logo {
    height: 60px;
}

.powned-logo {
    height: 45px;
}

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

.about-image {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.team-photo {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

.about-image:hover .team-photo {
    transform: scale(1.02);
}

/* YouTube Section */
.youtube-section {
    padding: 120px 0;
    background: var(--powned-black);
    color: white;
    text-align: center;
    position: relative;
}

.youtube-content h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}

.youtube-content h2 i {
    color: var(--radio2-red);
    margin-right: 15px;
}

.youtube-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

.btn-youtube {
    background: var(--radio2-red);
    color: white;
    font-size: 1.1rem;
    padding: 20px 40px;
}

.btn-youtube:hover {
    background: var(--radio2-dark-red);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(230, 0, 18, 0.4);
}

/* Contest Section */
.contest-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 20%, #ffd7d7 60%, #ffb3b3 85%, #e60012 100%);
    color: #333;
    position: relative;
}

.contest-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(230, 0, 18, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.6) 0%, transparent 40%);
    z-index: 1;
}

.contest-section .container {
    position: relative;
    z-index: 2;
}

.contest-header {
    text-align: center;
    margin-bottom: 60px;
}

.contest-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 20px;
    color: #e60012;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(230, 0, 18, 0.3);
}

.contest-header p {
    font-size: 1.3rem;
    color: #444;
    text-shadow: none;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

.contest-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
}

.contest-prizes {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.prize-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    border: 2px solid rgba(230, 0, 18, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.prize-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(230, 0, 18, 0.4);
    box-shadow: 0 20px 50px rgba(230, 0, 18, 0.15);
}

.prize-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.prize-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(230, 0, 18, 0.3);
    transition: all 0.3s ease;
}

.prize-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(230, 0, 18, 0.3);
    border-color: rgba(230, 0, 18, 0.6);
}

.eddybeer-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.prize-card:hover .eddybeer-photo {
    transform: scale(1.1);
}

.prize-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #e60012;
}

.prize-card p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contest-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 25px;
    border: 2px solid rgba(230, 0, 18, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.contest-form h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #e60012;
    font-weight: 700;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #444;
    font-weight: 600;
    font-size: 1.1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(230, 0, 18, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #e60012;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 20px rgba(230, 0, 18, 0.2);
}

.form-group select option {
    background: white;
    color: #333;
}

.btn-contest {
    background: linear-gradient(135deg, var(--radio2-red) 0%, var(--powned-pink) 100%);
    color: white;
    width: 100%;
    padding: 20px;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-contest:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 0, 18, 0.4);
}

/* Guilty Pleasure Section */
.guilty-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--powned-black) 0%, #2a2a2a 50%, var(--powned-pink) 100%);
    color: white;
    position: relative;
}

.guilty-header {
    text-align: center;
    margin-bottom: 60px;
}

.guilty-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.guilty-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin: 0 auto;
}

.guilty-content {
    display: flex;
    justify-content: center;
}

.guilty-form {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 25px;
    border: 2px solid rgba(255, 0, 107, 0.3);
    max-width: 500px;
    width: 100%;
    position: relative;
}

.btn-guilty {
    background: linear-gradient(135deg, var(--powned-pink) 0%, var(--powned-dark-pink) 100%);
    color: white;
    width: 100%;
    padding: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-guilty:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 107, 0.4);
}

.message {
    margin: 20px 0 0 0;
    padding: 18px 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    display: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    animation: slideIn 0.3s ease-out;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.message.success {
    background: rgba(40, 167, 69, 0.8);
    border: 2px solid rgba(40, 167, 69, 0.9);
    color: #FFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.message.error {
    background: rgba(220, 53, 69, 0.8);
    border: 2px solid rgba(220, 53, 69, 0.9);
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

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

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #c20010 0%, #e60012 50%, #ff006b 100%);
    text-align: center;
    position: relative;
    color: white;
}

.contact h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 30px;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 50px;
}

.contact-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.6);
}

.contact-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--radio2-red);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.btn-app {
    background: var(--gradient-primary);
    color: white;
}

.btn-instagram {
    background: linear-gradient(135deg, var(--powned-pink) 0%, var(--powned-dark-pink) 100%);
    color: white;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 1.1rem;
    font-weight: 600;
}

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

.footer-info p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-partners {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.partner-logo {
    height: 40px;
    width: auto;
    filter: brightness(1.2);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 25px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 80px 20px 0 20px;
        position: relative;
        min-height: 70vh;
        overflow: hidden;
    }

    .hero-content {
        width: 58%;
        height: 100%;
        position: relative;
        z-index: 2;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-eddy-photo {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50%;
        height: auto;
        max-height: 65vh;
        z-index: 1;
    }

    .hero-eddy-photo img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .hero-visual, .radio-icon {
       display: none;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-left: -19px;
        padding-top:15px;
        padding-bottom: 5px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-left: -158px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-left: -82px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin: 0px 0 0 0;
        width: 100%;
        max-width: 100%;
        order: 0;
    }
    
    .hero-live {
        justify-content: flex-start;
        margin-top: 15px;
        order: 0;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2.5rem;
    }
    
    .youtube-content h2 {
        font-size: 2.5rem;
    }
    
    .contact h2 {
        font-size: 2.5rem;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-partners {
        justify-content: center;
    }
    
    .stations-logos {
        justify-content: center;
    }
    
    .contest-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contest-form {
        margin-bottom: 20px;
    }
    
    .contest-header h2,
    .guilty-header h2 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 0 30px 0;
    }
    
    .hero-logo {
        width: clamp(250px, 90vw, 400px);
        height: auto;
        margin-bottom: 20px;
    }
    
    .about-text h2,
    .youtube-content h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .btn {
        width: 280px;
        max-width: 90%;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        margin-left: -160px;
    }

    .hero-live {
        justify-content: flex-start;
        margin-top: 15px;
        order: 0;
        width: 110%;
        margin-left: -160px;
        display: flex;
    }
    
    .radio-icon {
        height: clamp(100px, 12vw, 140px);
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .contest-header h2,
    .guilty-header h2 {
        font-size: 2rem;
    }
    
    .contest-header p,
    .guilty-header p {
        font-size: 1.1rem;
    }
    
    .contest-form,
    .guilty-form {
        padding: 30px 20px;
    }
    
    .message {
        margin: 20px 0 0 0;
        padding: 18px 20px;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .prize-card {
        padding: 30px 20px;
    }
    
    .prize-image {
        width: 120px;
        height: 120px;
    }
    
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }
}

/* Smooth scrolling and performance optimizations */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
} 