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

body {
    font-family: 'Raleway', sans-serif;
    background: #1a1a1a;
    color: #f5f5f5;
    min-height: 100vh;
    line-height: 1.6;
}

.wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #d97706 0%, #92400e 100%);
    padding: 2rem 1.5rem;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(217, 119, 6, 0.3);
    z-index: 1000;
}

.brand {
    text-align: center;
    margin-bottom: 3rem;
}

.brand-link {
    text-decoration: none;
    color: #fff;
}

.brand-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    backdrop-filter: blur(10px);
}

.brand-name {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

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

.sidebar-nav li {
    margin-bottom: 0.5rem;
}

.sidebar-nav a {
    display: block;
    padding: 1rem 1.5rem;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    transition: background 0.3s, transform 0.3s;
    font-weight: 600;
}

.sidebar-nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.menu-btn {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1001;
    background: #d97706;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
}

.menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    border-radius: 2px;
}

.main-content {
    flex: 1;
    margin-left: 280px;
    padding: 3rem;
}

.page-header {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    padding: 4rem 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.page-header h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
}

.warning-card {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    padding: 2rem;
    border-radius: 18px;
    margin: 2.5rem 0;
    border-left: 6px solid #7f1d1d;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

.warning-card h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.warning-card ul {
    list-style: none;
}

.warning-card li {
    color: #fff;
    padding: 0.6rem 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.warning-card li::before {
    content: "⚡ ";
    margin-right: 0.5rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 18px;
    border: 2px solid #404040;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-6px);
    border-color: #f59e0b;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.info-card h3 {
    color: #f59e0b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-card p {
    color: #d1d5db;
    font-size: 1.05rem;
    line-height: 1.7;
}

.game-section {
    background: #2d2d2d;
    padding: 2.5rem;
    border-radius: 20px;
    margin: 3rem 0;
    border: 3px solid #f59e0b;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.game-section h2 {
    text-align: center;
    color: #f59e0b;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.game-iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 12px;
    background: #000;
}

.content-block {
    background: #2d2d2d;
    padding: 3rem;
    border-radius: 20px;
    margin: 2.5rem 0;
    border: 1px solid #404040;
}

.content-block h2 {
    color: #f59e0b;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-block p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #d1d5db;
    line-height: 1.8;
}

.content-block ul {
    margin: 1rem 0 1rem 2rem;
}

.content-block li {
    margin: 0.5rem 0;
    color: #d1d5db;
}

.page-footer {
    background: linear-gradient(90deg, #d97706 0%, #92400e 100%);
    padding: 3rem 2rem;
    margin-top: 4rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.verification-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.verification-overlay.hidden {
    display: none;
}

.verification-card {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    padding: 3rem;
    border-radius: 20px;
    max-width: 520px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(245, 158, 11, 0.5);
}

.verification-card h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.verification-card p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.verification-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.verification-buttons button {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'Raleway', sans-serif;
}

.accept-btn {
    background: #059669;
    color: white;
}

.accept-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(5, 150, 105, 0.5);
}

.reject-btn {
    background: #dc2626;
    color: white;
}

.reject-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.5);
}

@media (max-width: 968px) {
    .sidebar {
        left: -280px;
        transition: left 0.3s;
    }
    
    .sidebar.active {
        left: 0;
    }
    
    .menu-btn {
        display: block;
    }
    
    .main-content {
        margin-left: 0;
        padding: 5rem 1.5rem 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .game-iframe {
        height: 500px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
}
