@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(to bottom, #ff8c42 0%, #ff6b35 50%, #f25c54 100%);
    color: #2d2d2d;
    line-height: 1.8;
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    overflow-y: auto;
}

.logo-container {
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-bottom: 3px solid #ff8c42;
    background: rgba(255, 140, 66, 0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff8c42;
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-symbol {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 140, 66, 0.5));
}

.sidebar nav {
    flex: 1;
    padding: 2rem 0;
}

.sidebar nav ul {
    list-style: none;
}

.sidebar nav a {
    display: block;
    color: #e0e0e0;
    text-decoration: none;
    padding: 1.2rem 2rem;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.sidebar nav a:hover {
    background: rgba(255, 140, 66, 0.2);
    border-left-color: #ff8c42;
    padding-left: 2.5rem;
    color: #ff8c42;
}

.sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 140, 66, 0.3);
    font-size: 0.9rem;
    color: #999;
    text-align: center;
}

.main-wrapper {
    flex: 1;
    margin-left: 280px;
    background: white;
}

.mobile-header {
    display: none;
    background: #1a1a1a;
    padding: 1rem;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mobile-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff8c42;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #ff8c42;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.page-header {
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.4rem;
    font-weight: 400;
}

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

.content-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #ff8c42;
}

.content-card h2 {
    color: #ff6b35;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.info-box {
    background: linear-gradient(135deg, #fff5e6, #ffe8d1);
    border-left: 5px solid #ff8c42;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(255, 140, 66, 0.2);
}

.info-box strong {
    color: #f25c54;
    display: block;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.game-wrapper {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.game-wrapper h2 {
    color: #ff8c42;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.game-embed {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 12px;
    background: #000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.benefits-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
}

.benefit-item {
    background: linear-gradient(135deg, #fff, #fff5e6);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #ffe8d1;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-8px);
    border-color: #ff8c42;
    box-shadow: 0 15px 35px rgba(255, 140, 66, 0.3);
}

.benefit-item h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 600;
}

footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #e0e0e0;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 140, 66, 0.3);
}

.footer-column h3 {
    color: #ff8c42;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 600;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin: 0.6rem 0;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-links a:hover {
    color: #ff8c42;
    padding-left: 5px;
}

.footer-credits {
    text-align: center;
    padding-top: 2rem;
    color: #999;
    font-size: 1rem;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.overlay.show {
    display: flex;
}

.popup {
    background: linear-gradient(135deg, #fff, #fff5e6);
    border-radius: 20px;
    padding: 3rem;
    max-width: 550px;
    text-align: center;
    border: 5px solid #ff8c42;
    box-shadow: 0 20px 60px rgba(255, 140, 66, 0.5);
}

.popup h2 {
    color: #ff6b35;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.popup p {
    color: #2d2d2d;
    font-size: 1.2rem;
    margin: 1rem 0;
    line-height: 1.6;
}

.button-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.button {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.button-confirm {
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    color: white;
}

.button-confirm:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.5);
}

.button-decline {
    background: #e0e0e0;
    color: #2d2d2d;
}

.button-decline:hover {
    background: #ccc;
}

@media (max-width: 968px) {
    body {
        display: block;
    }
    
    .sidebar {
        left: -280px;
        transition: left 0.3s ease;
    }
    
    .sidebar.active {
        left: 0;
    }
    
    .main-wrapper {
        margin-left: 0;
    }
    
    .mobile-header {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .page-header h1 {
        font-size: 2.3rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .benefits-layout {
        grid-template-columns: 1fr;
    }
    
    .game-embed {
        height: 500px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .popup {
        padding: 2rem;
    }
    
    .button-group {
        flex-direction: column;
    }
}
