/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --hero-bg: '';
    --heading-font: 'Orbitron', sans-serif;
    --body-font: 'Play', sans-serif;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: var(--heading-font);
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.logo img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo a:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-links li a:hover {
    color: #ffd700;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), var(--hero-bg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
    background-image: url(https://images.pond5.com/abstract-futuristic-hexagon-and-black-footage-244101523_iconl.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
    color: #ffffff;
}

.hero-content p {
    font-family: var(--body-font);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ffd700;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-family: var(--heading-font);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: #ffed4a;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #1a1a1a;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-family: var(--heading-font);
    letter-spacing: 1px;
}

.about-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.mission-statement, .why-choose {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefits-list li:before {
    content: "•";
    color: #ffd700;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.feature h3 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-family: var(--heading-font);
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.feature p {
    color: #666;
    margin-bottom: 1rem;
}

.feature-details {
    list-style: none;
    padding: 0;
    text-align: left;
}

.feature-details li {
    margin-bottom: 0.5rem;
    color: #666;
    padding-left: 1.2rem;
    position: relative;
}

.feature-details li:before {
    content: "→";
    color: #ffd700;
    position: absolute;
    left: 0;
}

/* Games Section */
.games {
    padding: 5rem 0;
}

.games h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.game-card h3 {
    margin: 0 0 0.5rem 0;
    color: #1a1a1a;
    font-size: 1.5rem;
    font-family: var(--heading-font);
    letter-spacing: 1px;
}

.game-card p {
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

.play-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #ffd700;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 120px;
    font-family: var(--heading-font);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.play-button:hover {
    background-color: #ffed4a;
    transform: translateY(-2px);
}

/* Disclaimer Section */
.disclaimer {
    background-color: #f9f9f9;
    padding: 4rem 0;
}

.disclaimer-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.disclaimer-image {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.disclaimer-image img {
    width: 100%;
    height: auto;
    max-width: 300px;
    transition: transform 0.3s ease;
}

.disclaimer-image img:hover {
    transform: scale(1.05);
}

.disclaimer-text {
    flex: 1;
}

.disclaimer h2 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-family: var(--heading-font);
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.disclaimer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-logo {
    text-align: left;
    font-family: var(--heading-font);
}

.footer-logo img {
    height: 30px;
    width: auto;
    margin-bottom: 0.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
}

@media screen and (max-width: 768px) {
    .games-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .games h2, .about h2 {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .game-card h3 {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .games h2, .about h2 {
        font-size: 1.8rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design for About Section */
@media screen and (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about h2 {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .mission-statement, .why-choose {
        padding: 1.5rem;
    }
}

/* Responsive Design for Disclaimer */
@media screen and (max-width: 768px) {
    .disclaimer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .disclaimer-image {
        flex: 0 0 200px;
        padding: 0;
    }

    .disclaimer-image img {
        max-width: 200px;
    }

    .disclaimer h2 {
        font-size: 1.5rem;
    }
} 