@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Orbitron', sans-serif;
    line-height: 1.6;
    background: #111;
    min-height: 100vh;
    color: #fff;
}

header {
    text-align: center;
    padding: 2.5rem 0 1.5rem 0;
    background: #111;
    position: relative;
}

.logo-circle {
    width: 260px;
    height: 260px;
    background: #000;
    border-radius: 50%;
    margin: 0 auto 2rem auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px #000a, 0 0 0 8px #fff;
    z-index: 10;
}

.logo-circle .da-text {
    font-family: 'Poppins', 'Orbitron', sans-serif;
    font-size: 5.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.08em;
    -webkit-text-stroke: 5px #fff;
    text-stroke: 5px #fff;
    text-shadow: 0 0 30px #FFD70055, 0 0 10px #fff, 0 0 2px #FFD700;
    position: relative;
    z-index: 2;
    line-height: 1;
}

.logo-circle .crown-img {
    width: 70px;
    position: absolute;
    left: 38px;
    top: 32px;
    z-index: 3;
    transform: rotate(-18deg);
    filter: drop-shadow(0 0 10px #FFD700cc);
    pointer-events: none;
}

.logo-circle .lens-flare {
    position: absolute;
    left: 140px;
    top: 70px;
    width: 90px;
    height: 90px;
    pointer-events: none;
    background: radial-gradient(circle, #fff 0%, #fff8 40%, transparent 80%);
    border-radius: 50%;
    opacity: 0.85;
    animation: flare-move 2.5s linear infinite alternate;
    mix-blend-mode: screen;
    z-index: 4;
}

@keyframes flare-move {
    0% { left: 120px; top: 70px; opacity: 0.7; }
    50% { left: 150px; top: 60px; opacity: 1; }
    100% { left: 140px; top: 70px; opacity: 0.7; }
}

.logo-circle .logo-subtext {
    font-family: 'Poppins', 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #FFD700;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-top: 0.7rem;
    text-shadow: 0 0 10px #FFD70088, 0 0 2px #fff;
    position: absolute;
    bottom: 22px;
    left: 0;
    width: 100%;
    text-align: center;
}

.winner-section {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.winner-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #FFD700;
    text-transform: uppercase;
    text-shadow: 0 0 10px #FFD70088;
}

#winner-name {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px #fff8,
                 0 0 20px #fff5;
    margin-bottom: 1rem;
}

main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.prize-section {
    text-align: center;
    margin-bottom: 3rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.prize-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #FFD700;
    text-transform: uppercase;
    text-shadow: 0 0 10px #FFD70088;
}

.prize-image img {
    max-width: 350px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(32, 189, 190, 0.5);
    transition: transform 0.3s ease;
}

.prize-image img:hover {
    transform: scale(1.02);
}

.videos-section {
    margin-top: 3rem;
}

.videos-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #FFD700;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 0 10px #FFD70088;
}

#video-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

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

footer {
    background: rgba(0, 0, 0, 0.2);
    color: white;
    text-align: center;
    padding: 1rem 0;
    position: relative;
    bottom: 0;
    width: 100%;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    #winner-name {
        font-size: 1.5rem;
    }
    
    .prize-section h2,
    .videos-section h2 {
        font-size: 1.8rem;
    }
}

.logo-container, .logo-text .daily, .logo-text .amazement, .skull-icon, .lightning {
    display: none !important;
}

.subscribe-button, .enter-button {
    background: linear-gradient(90deg, #FFD700 0%, #FFB300 100%);
    color: #111;
    border: none;
    border-radius: 30px;
    padding: 0.7em 2em;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 2px 10px #FFD70044;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
}

.subscribe-button:hover, .enter-button:hover {
    background: linear-gradient(90deg, #FFB300 0%, #FFD700 100%);
    color: #fff;
    box-shadow: 0 4px 20px #FFD70088;
}

.description-text {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem 2.5rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    line-height: 1.5;
    font-size: 1.15rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 0.2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    color: #f8f8f8;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.description-text .subscribe-button {
    font-family: 'Roboto', sans-serif;
    margin-top: 0.8rem;
    padding: 12px 24px;
    font-size: 15px;
    letter-spacing: 0.5px;
    border-radius: 3px;
    box-shadow: 0 0 12px #fff, 0 0 24px #fff2;
}

.description-text .subscribe-button:hover {
    box-shadow: 0 0 20px #fff, 0 0 40px #fff4;
}

.prize-description {
    font-family: 'Poppins', sans-serif;
    color: #f8f8f8;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 1.5rem;
    padding: 0 1rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.form-section {
    text-align: center;
    margin-bottom: 3rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #FFD700;
    text-transform: uppercase;
    text-shadow: 0 0 10px #FFD70088;
}

.form-section .description-text {
    background: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    border: none;
    box-shadow: none;
    font-size: 0.95rem;
    max-width: none;
    backdrop-filter: none;
}

.subscriber-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(32, 189, 190, 0.3);
}

.logo-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.logo-img img {
    max-width: 320px;
    width: 100%;
    height: auto;
    border-radius: 50%;
    border: 12px solid #000;
    box-shadow: 0 0 20px #0008;
    clip-path: circle(80%);
}

.header-icons {
    position: absolute;
    top: 32px;
    right: 40px;
    display: flex;
    gap: 22px;
    z-index: 20;
}

.icon-link {
    color: #FFD700;
    font-size: 2.2rem;
    transition: filter 0.2s, color 0.2s;
    text-decoration: none;
}

.icon-link:hover {
    filter: brightness(1.3) drop-shadow(0 0 8px #fff8);
    color: #fff;
} 