* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", serif;
}

:root {
    --primary-color: #0b4fff;
    --secondary-color: #1f80ff;
    --accent-color: #1a4fff;
    --dark-bg: #0f0c29;
    --darker-bg: #0a081f;
    --text-light: #e6e6fa;
    --text-muted: #fbfbfb;
}

body {
    background: linear-gradient(-170deg, #0f0c29 0%, #071342 30%, #002c8c 70%, #021d4d 100%);
    color: white;
    min-height: 100vh;
    position: relative;
}

.game-modes-section,
.why-play-section,
.about-section,
.portfolio-section,
.contact-section {
    background: transparent !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeIn 1s ease-in-out;
}

.section-description {
    font-size: 1.25rem;
    color: #b8b8b8;
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
}

a {
    text-decoration: none;
    color: #b8b8b8;
}

img {
    max-width: 100%;
    height: auto;
}

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    padding: 3rem 2rem;
    background: transparent;
    color: var(--text-muted);
    text-align: center;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 400px;
    height: 1px;
    background: var(--text-muted);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-text {
    font-weight: 400;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-text p {
    margin: 0;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(44, 73, 227, 0.2);
}

.social-icon:hover {
    transform: translateY(-3px);
    color: white;
}

/* Specific icon colors */
.social-icon.discord:hover {
    background: #5865F2;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.social-icon.instagram:hover {
    background: #E1306C;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.social-icon.github:hover {
    background: #333;
    box-shadow: 0 4px 15px rgba(51, 51, 51, 0.3);
}

.social-icon i {
    transition: inherit;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 1rem;
    }
}

html {
    scroll-behavior: smooth;
}

@media screen and (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}