/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Body */
body {
    background: #f0f0f0; /* Light gray background */
    color: #000;
    font-size: 16px;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #1c1c1c; /* Dark gray background */
    color: white;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: background-color 0.3s ease;
}

header.scrolled {
    background: #000; /* Darker background when scrolling */
}

header .logo {
    font-size: 2.2em;
    font-weight: bold;
    color: #00aaff; /* Blue logo text */
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #00aaff; /* Blue underline */
    transition: width 0.3s;
    position: absolute;
    left: 0;
    bottom: -5px;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: #00aaff; /* Blue hover effect */
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh; /* Adjusted height for responsiveness */
    background: url('hero-bg.jpg') no-repeat center center/cover;
    text-align: center;
    color: white;
    padding: 20px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3); /* Reduced overlay for better text visibility */
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2em, 6vw, 4em); /* Responsive font size using clamp */
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff; /* Pure white text */
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7); /* Reduced shadow for clarity */
    z-index: 2;
    position: relative;
}

.hero p {
    font-size: clamp(1.2em, 3vw, 2em); /* Responsive paragraph size */
    margin-bottom: 30px;
    max-width: 800px;
    color: #ffffff;
    z-index: 2;
    position: relative;
}

.cta-button {
    background: #00aaff;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 15px 30px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 2;
    position: relative;
}

.cta-button:hover {
    background: #008ecc;
    transform: scale(1.1);
}

/* Content Sections */
.content {
    padding: 80px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 40px auto;
    background: #fff;
    color: #000;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Soft shadow */
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1.5s ease forwards;
}

.content h2 {
    font-size: 3em;
    color: #00aaff;
    margin-bottom: 20px;
    animation: fadeInRight 1.2s ease;
}

.content p {
    font-size: 1.3em;
    line-height: 1.8;
    margin-bottom: 30px;
    animation: fadeInLeft 1.2s ease;
}

.content ul li {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #000;
    position: relative;
    padding-left: 30px;
    animation: fadeInUp 1.5s ease;
}

/* Footer */
footer {
    background: #1c1c1c; /* Dark gray background */
    color: white;
    padding: 60px 20px; /* Increased padding to push the buttons further down */
    text-align: center;
    border-top: 3px solid #333;
    position: relative;
    overflow: hidden;
}

footer p {
    margin-bottom: 20px; /* Added more margin to space the text and buttons */
    font-size: 1.1em;
}

.footer-buttons {
    margin-top: 40px; /* Adds more space between text and buttons */
}

.footer-buttons a {
    display: inline-block;
    background: #00aaff; /* Blue background for buttons */
    color: white;
    text-decoration: none; /* No underline */
    border-radius: 30px;
    padding: 15px 30px;
    margin: 10px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.discord-button {
    background: #5865f2; /* Discord brand color */
}

.store-button {
    background: #ff6f61; /* Store button color */
}

.footer-buttons a:hover {
    transform: scale(1.1); /* Zoom on hover */
}

.discord-button:hover {
    background: #4e54e4; /* Darker Discord blue on hover */
}

.store-button:hover {
    background: #e55b5b; /* Darker Store button on hover */
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
