/* Reset and general styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Header styles */
header {
    background: linear-gradient(to right, #2c3e50, #3498db);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    align-items: center;
}

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

.logo img {
    width: 50px;
    height: 50px;
    animation: bounce 2s infinite;
}

.logo h1 {
    font-size: 2.5rem;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5),
                 -2px -2px 4px rgba(255, 255, 255, 0.1);
    letter-spacing: 2px;
}

/* Logo bounce animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Remove the navigation links as requested */
.nav-links {
    display: none;
}

/* Game container styles */
.game-container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Game layout adjustments */
.game-layout {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
}

/* Main game area styles */
.game-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.iframe-container {
    position: relative;
    aspect-ratio: 16/9;
    background: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
}

.iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.fullscreen-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.fullscreen-btn svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.fullscreen-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Fullscreen styles */
.iframe-container.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    border-radius: 0;
}

.iframe-container.fullscreen iframe {
    width: 100%;
    height: 100%;
}

/* Bottom navigation styles */
.bottom-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    background: #2a2a2a;
    padding: 1rem;
    border-radius: 8px;
}

/* Right navigation styles */
.right-nav {
    width: 300px;
    background: #2a2a2a;
    padding: 1rem;
    border-radius: 8px;
    height: calc(600px + 1rem + 120px);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
}

.nav-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* Game item styles adjustments */
.game-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.game-item img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.game-item span {
    display: block;
    color: #fff;
    font-size: 0.9rem;
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 4rem 2rem;
    margin: 2rem 0;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #ff4e50, #f9d423);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.hero-features {
    margin-bottom: 2.5rem;
}

.hero-features ul {
    list-style: none;
}

.hero-features li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-cta button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.play-button {
    background: linear-gradient(to right, #ff4e50, #f9d423);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 78, 80, 0.3);
}

.learn-more {
    background: transparent;
    color: #fff;
    border: 2px solid #fff !important;
}

.hero-cta button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 78, 80, 0.4);
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h2 {
        font-size: 2.5rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-features ul {
        display: inline-block;
        text-align: left;
    }
}

/* Features Section Styles */
.features-section {
    padding: 4rem 0;
    background: #1a1a1a;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.feature-item {
    background: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.feature-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.feature-item h3 {
    padding: 1.5rem;
    font-size: 1.5rem;
    color: #fff;
    background: linear-gradient(to right, #ff4e50, #f9d423);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-item p {
    padding: 0 1.5rem 1.5rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.features-description {
    color: #e0e0e0;
    line-height: 1.8;
}

.features-description p {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* What Is, How To, and Why Sections Styles */
.what-is-section,
.how-to-section,
.why-section {
    padding: 4rem 0;
    background: #1a1a1a;
}

.what-is-content,
.how-to-steps,
.why-reasons {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.what-is-section h2,
.how-to-section h2,
.why-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.what-is-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: center;
}

.what-is-text p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.what-is-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.how-to-steps {
    display: grid;
    gap: 2rem;
}

.step {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.step h3 {
    color: #ff4e50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.step p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.why-reasons {
    display: grid;
    gap: 2rem;
}

.reason {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.reason h3 {
    color: #ff4e50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.reason p {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .what-is-content {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 4rem 0;
    background: #1a1a1a;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-item {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.faq-question {
    color: #ff4e50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.faq-answer {
    color: #e0e0e0;
}

.faq-answer p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-container {
        padding: 0 1rem;
    }
    
    .faq-question {
        font-size: 1.3rem;
    }
}

/* Footer Styles */
footer {
    background: #1a1a1a;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #ff4e50, #f9d423);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover::after {
    width: 100%;
}

.copyright {
    color: #888;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        padding: 0 1rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
} 