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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Right Navigation Panel */
.right-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, #065f46 0%, #064e3b 100%);
    padding: 2rem 1.5rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.panel-logo {
    width: 80px;
    height: auto;
}

.panel-close {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.panel-menu {
    list-style: none;
    flex: 1;
    overflow-y: auto;
}

.panel-menu li {
    margin-bottom: 0.5rem;
}

.panel-link {
    display: block;
    padding: 0.8rem 1rem;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.panel-link:hover,
.panel-link.active {
    background: #10b981;
    transform: translateX(-5px);
}

.panel-cta {
    display: block;
    padding: 1rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.panel-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
}

/* Main Content */
.main-content {
    margin-right: 300px;
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem 3rem;
    min-height: 100vh;
    align-items: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
}

.hero-content {
    padding-right: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #10b981 0%, #84cc16 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid #10b981;
    border-radius: 12px;
}

.badge-number {
    font-size: 2rem;
    font-weight: 800;
    color: #10b981;
}

.badge-text {
    font-size: 0.9rem;
    color: #9ca3af;
}

.hero-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Games Section */
.games-section {
    padding: 5rem 3rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #10b981 0%, #84cc16 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.game-card {
    background: rgba(30, 41, 59, 0.6);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: #10b981;
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.3);
}

.game-card img {
    width: 100%;
    height: auto;
    display: block;
}

.game-info {
    padding: 2rem;
}

.game-info h3 {
    font-size: 2rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.game-info p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.game-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.game-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
}

/* Mobile Gaming Section */
.mobile-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 5rem 3rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
    align-items: center;
}

.mobile-content h2 {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.mobile-content p {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.mobile-features {
    list-style: none;
    margin-bottom: 2rem;
}

.mobile-features li {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
}

.mobile-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.mobile-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.mobile-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
    background: #0f172a;
    padding: 3rem 3rem 1.5rem;
    border-top: 2px solid #10b981;
}

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

.footer-col h4 {
    color: #10b981;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: #9ca3af;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #10b981;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 185, 129, 0.3);
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        margin-right: 0;
    }

    .right-panel {
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .right-panel.active {
        transform: translateX(0);
    }

    .panel-close {
        display: block;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-section,
    .mobile-section {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .games-section,
    .mobile-section {
        padding: 3rem 1.5rem;
    }

    .mobile-content h2 {
        font-size: 2rem;
    }

    .footer {
        padding: 2rem 1.5rem 1rem;
    }
}


/* Inner Page Styles */
.inner-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.inner-page h1 {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 2rem;
    text-align: center;
}

.inner-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 20px;
    margin: 0 auto 3rem;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.inner-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #d1d5db;
    text-align: center;
}

.inner-content p {
    margin-bottom: 2rem;
}

.cta-section {
    margin-top: 3rem;
    text-align: center;
}

@media (max-width: 768px) {
    .inner-page {
        padding: 2rem 1.5rem;
    }
    
    .inner-page h1 {
        font-size: 2rem;
    }
    
    .inner-content {
        font-size: 1.1rem;
    }
}
