/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --spacing-small: 0.5rem;
    --spacing-medium: 1rem;
    --spacing-large: 2rem;
    --max-width: 1200px;

    /* D4rkWolf Color Palette */
    --primary-color: #008080; /* Teal */
    --secondary-color: #000000; /* Black */
    --accent-color: #228B22; /* Forest Green */
    --light-bg: #F5F5F5; /* Light Gray */
    --dark-bg: #000000; /* Black */
    --text-light: #FFFFFF; /* White */
    --text-dark: #333333; /* Dark Gray */
    --highlight-color: #00CED1; /* Turquoise */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    --transition: all 0.3s ease; /* Smooth transitions */
}

body {
    font-family: 'Poppins', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--dark-bg);
    overflow: hidden; /* Prevent scrolling on the splash page */
}

/* Splash Screen */
.splash-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    text-align: center;
}

.splash-content {
    max-width: 600px;
    text-align: center;
}

.splash-logo {
    width: 150px;
    height: 150px;
    margin-bottom: var(--spacing-medium);
    border-radius: 15px; /* Rounded corners for modern look */
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.splash-logo:hover {
    transform: scale(1.1) rotate(5deg); /* Fun hover effect */
}

.splash-screen h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-medium);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--highlight-color);
    animation: slideIn 1.5s ease-in-out;
}

.splash-screen p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-large);
    opacity: 0.8;
    animation: fadeIn 2s ease-in-out;
}

/* Enter Button */
.enter-button {
    display: inline-block;
    padding: var(--spacing-medium) var(--spacing-large);
    background: var(--highlight-color);
    color: var(--text-light);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.enter-button:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 0 10px rgba(0, 206, 209, 0.8); /* Glow effect */
}

/* Responsive Design */
@media (max-width: 768px) {
    .splash-screen h1 {
        font-size: 2rem;
    }

    .splash-screen p {
        font-size: 1rem;
    }

    .enter-button {
        font-size: 1rem;
        padding: var(--spacing-small) var(--spacing-medium);
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}