@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Saira:ital,wght@0,400;0,700;0,900;1,700;1,900&display=swap');

:root {
    --bg-color: #0d0d0d;
    --primary: #ff1c1a;
    --secondary: #ffdc1a;
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    background-color: var(--bg-color);
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 28, 26, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 220, 26, 0.03) 0%, transparent 40%);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Saira', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    font-style: italic;
}

#main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px 40px;
    /* Increased top padding from 40px to 80px */
}

/* Hero Section */
.hero {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 80px;
}

.logo-container {
    position: relative;
    width: min(90%, 600px);
    margin-bottom: 30px;
    filter: drop-shadow(0 0 30px rgba(255, 28, 26, 0.2));
    animation: fadeInScale 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo {
    width: 100%;
    height: auto;
}

/* Sections */
section {
    width: 100%;
    max-width: 900px;
    margin: 40px 0;
    padding: 30px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    animation: fadeInUp 1s ease-out forwards;
}

h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 15px;
}

h2::before {
    content: '';
    width: 4px;
    height: 30px;
    background: var(--primary);
    border-radius: 4px;
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    background: #000;
}

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

/* Social Links */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-card:hover {
    background: rgba(255, 28, 26, 0.1);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.social-card span {
    font-weight: 700;
    margin-top: 10px;
}

/* Footer */
footer {
    padding: 40px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    section {
        padding: 20px;
        border-radius: 16px;
    }

    h2 {
        font-size: 1.5rem;
    }
}