* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('/static/background-tile.png');
    background-repeat: repeat;
    background-attachment: fixed;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.welcome-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-wrapper {
    background: rgba(40, 40, 40, 0.95);
    border: 2px solid #d4af37;
    border-radius: 20px;
    padding: 60px 40px;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-section {
    text-align: center;
    margin-bottom: 30px;
}

.main-logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.5));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.title-section {
    text-align: center;
    margin-bottom: 40px;
}

.main-title {
    font-size: 4rem;
    font-weight: bold;
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    letter-spacing: 8px;
    margin-bottom: 15px;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    }
    to {
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.9);
    }
}

.year-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    font-size: 2rem;
    font-weight: bold;
    padding: 10px 40px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.subtitle {
    font-size: 1.8rem;
    color: #cccccc;
    letter-spacing: 4px;
    font-weight: 300;
}

.description-section {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.details-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #cccccc;
}

.trophy-showcase {
    text-align: center;
    margin: 50px 0;
}

.trophy-image {
    max-width: 70px;
    height: auto;
    filter: drop-shadow(0 5px 20px rgba(212, 175, 55, 0.6));
    animation: trophySpin 4s ease-in-out infinite;
}

@keyframes trophySpin {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

.navigation {
    text-align: center;
    margin-top: 50px;
}

.nav-btn {
    display: inline-block;
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    border: none;
}

.main-btn:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 40px 20px;
    }
    
    .main-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .year-badge {
        font-size: 1.5rem;
        padding: 8px 30px;
    }
    
    .subtitle {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .details-text {
        font-size: 1rem;
    }
    
    .nav-btn {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
}