@font-face {
    font-family: 'Gotham';
    src: url('/Gotham-Bold.otf') format('opentype');
    font-weight: bold;
}

@font-face {
    font-family: 'ProximaNova';
    src: url('/ProximaNova-Regular.ttf') format('truetype');
    font-weight: normal;
}

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

body {
    font-family: 'ProximaNova', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

.scrolling-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 200vh;
    background-image: url('assets/pattern.jpg');
    background-size: 400px 400px;
    background-repeat: repeat;
    opacity: 0.1;
    z-index: -1;
    animation: scrollPattern 6s linear infinite;
}

@keyframes scrollPattern {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-800px);
    }
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    padding: 40px 0;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    animation: float 3s ease-in-out infinite;
}

.logo-text {
    font-family: 'Gotham', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.main-content {
    padding: 60px 0;
    text-align: center;
}

.hero-section {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.tagline {
    font-family: 'Gotham', sans-serif;
    font-size: 3rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.description {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.footer {
    padding: 60px 0 40px;
    text-align: center;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.footer:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    position: relative;
    padding: 15px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.68, -0.8, 0.32, 1.8);
    overflow: hidden;
    white-space: nowrap;
}

.social-link:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    animation: elasticBounce 0.8s cubic-bezier(0.68, -0.8, 0.32, 1.8);
}

.social-icon {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.social-text {
    font-family: 'ProximaNova', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-left: 0;
    max-width: 0;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.8, 0.32, 1.8);
    white-space: nowrap;
}

.social-link:hover .social-text {
    margin-left: 15px;
    max-width: 200px;
    opacity: 1;
}

.youtube-link:hover {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 100, 100, 0.1));
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.roblox-link:hover {
    background: linear-gradient(135deg, rgba(0, 162, 255, 0.2), rgba(100, 200, 255, 0.1));
    border: 1px solid rgba(0, 162, 255, 0.3);
}

@keyframes elasticBounce {
    0% {
        transform: scale(1);
    }
    20% {
        transform: scale(1.25);
    }
    40% {
        transform: scale(1.05);
    }
    60% {
        transform: scale(1.15);
    }
    80% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 2rem;
    }
    
    .description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .scrolling-pattern {
        background-size: 150px 150px;
    }
    
    .social-links {
        gap: 30px;
        flex-direction: column;
    }
    
    .social-link {
        padding: 12px 18px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
    
    .scrolling-pattern {
        background-size: 100px 100px;
    }
    
    .social-links {
        gap: 20px;
    }
    
    .social-link {
        padding: 10px 15px;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
    }
    
    .social-text {
        font-size: 0.8rem;
    }
}