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

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

body {
    font-family: 'Nunito', sans-serif;
    background: #0a0a0a;
    color: #a855f7;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    padding-bottom: 20px;
}

header {
    text-align: center;
    margin-bottom: 30px;
    padding: 60px 0 40px 0;
}

h1 {
    font-family: 'Comfortaa', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    color: #a855f7;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    text-shadow: 
        0 0 10px #a855f7,
        0 0 20px #a855f7,
        0 0 30px #a855f7,
        0 0 40px #a855f7;
}

.embeds-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 0;
    align-items: stretch;
    align-content: start;
}

.embed-wrapper {
    position: relative;
    background: rgba(168, 85, 247, 0.05);
    border: 2px solid #a855f7;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 
        0 0 20px rgba(168, 85, 247, 0.3),
        inset 0 0 20px rgba(168, 85, 247, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0;
}

.embed-wrapper.youtube-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.embed-wrapper:hover {
    box-shadow: 
        0 0 30px rgba(168, 85, 247, 0.5),
        inset 0 0 30px rgba(168, 85, 247, 0.15);
}

.embed-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 1rem;
    color: #a855f7;
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    flex-shrink: 0;
}

.embed-wrapper iframe {
    width: 100%;
    max-width: 100%;
    border: none;
    border-radius: 4px;
    background: #000;
    display: block;
    margin: 0 auto;
}

.form-embed {
    height: 100%;
    min-height: 600px;
    max-height: 90vh;
    width: 100%;
    margin-bottom: 0;
    flex: 1;
}

.youtube-embed {
    aspect-ratio: 16 / 9;
    width: 100%;
    max-width: 100%;
    height: auto;
    flex-shrink: 0;
    display: block;
    margin: 0 auto;
}

.neon-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    align-items: stretch;
    flex-wrap: wrap;
}

.neon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #a855f7;
    transition: all 0.3s ease;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(168, 85, 247, 0.05);
    border: 2px solid #a855f7;
    box-shadow: 
        0 0 15px rgba(168, 85, 247, 0.4),
        inset 0 0 15px rgba(168, 85, 247, 0.1);
    flex: 0 1 auto;
    min-width: 120px;
    text-align: center;
}

.neon-link:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 25px rgba(168, 85, 247, 0.8),
        0 0 40px rgba(168, 85, 247, 0.6),
        inset 0 0 20px rgba(168, 85, 247, 0.2);
    border-color: #c084fc;
}

.neon-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 8px #a855f7) drop-shadow(0 0 15px #a855f7);
    transition: all 0.3s ease;
}

.neon-link:hover .neon-icon {
    filter: drop-shadow(0 0 12px #c084fc) drop-shadow(0 0 25px #c084fc) drop-shadow(0 0 35px #c084fc);
    transform: rotate(5deg);
}

.neon-link-text {
    font-family: 'Comfortaa', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 
        0 0 8px #a855f7,
        0 0 15px #a855f7;
    text-align: center;
    line-height: 1.2;
    word-break: break-word;
    width: 100%;
}

.neon-link:hover .neon-link-text {
    text-shadow: 
        0 0 12px #c084fc,
        0 0 25px #c084fc,
        0 0 35px #c084fc;
}

@media (max-width: 1024px) {
    .embeds-container {
        grid-template-columns: 1fr;
    }
    
    .embed-wrapper {
        padding: 12px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.3rem;
    }
    
    .embeds-container {
        gap: 15px;
    }
    
    .form-embed {
        min-height: 500px;
        max-height: 85vh;
    }
    
    .neon-links {
        gap: 8px;
        margin-top: 12px;
    }
    
    .neon-icon {
        font-size: 1.5rem;
    }
    
    .neon-link-text {
        font-size: 0.6rem;
    }
    
    .neon-link {
        padding: 10px;
    }
}

