@font-face {
    font-family: 'SF Sports Night';
    src: url('SF Sports Night.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SF Sports Night NS';
    src: url('SF Sports Night NS.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ff8c42;
    font-family: 'SF Sports Night', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.top-nav {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 100;
}

.news-link {
    color: #ff8c42;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #ffa366;
    text-decoration: underline;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    min-height: 100vh;
}

.team-name {
    font-size: 5rem;
    font-weight: normal;
    color: #ff8c42;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.team-number {
    font-size: 1.5rem;
    color: #ff8c42;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-email {
    font-size: 1.3rem;
    margin-top: 20px;
    font-family: 'SF Sports Night NS', Arial, sans-serif;
}

.contact-email a {
    color: #ff8c42;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: #ffa366;
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .team-name {
        font-size: 3.5rem;
    }
    
    .team-number {
        font-size: 1.2rem;
    }
    
    .contact-email {
        font-size: 1.1rem;
    }
    
    .top-nav {
        top: 15px;
        right: 20px;
    }
    
    .news-link {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .team-name {
        font-size: 2.5rem;
    }
    
    .team-number {
        font-size: 1rem;
    }
    
    .contact-email {
        font-size: 1rem;
    }
}

