/* login-111bet.com - Unique Sidebar + Card Layout */
:root {
    --primary: #7B2CBF;
    --secondary: #FFD60A;
    --accent: #06FFA5;
    --dark: #10002B;
    --light: #F8F9FA;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--dark) 0%, #240046 100%);
    color: var(--light);
    min-height: 100vh;
    display: flex;
}

/* Sidebar Navigation - COMPLETELY DIFFERENT */
.sidebar {
    width: 280px;
    background: rgba(123, 44, 191, 0.1);
    backdrop-filter: blur(10px);
    border-right: 2px solid var(--primary);
    padding: 30px 20px;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.sidebar .logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.sidebar .logo {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 0 20px var(--secondary));
}

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

.sidebar nav li {
    margin-bottom: 15px;
}

.sidebar nav a {
    display: block;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid transparent;
    color: var(--light);
    text-decoration: none;
    border-radius: 0 10px 10px 0;
    transition: all 0.3s;
}

.sidebar nav a:hover {
    background: rgba(123, 44, 191, 0.3);
    border-left-color: var(--secondary);
    transform: translateX(10px);
}

.sidebar .login-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary), #9D4EDD);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    margin-top: 30px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(123, 44, 191, 0.4);
    transition: transform 0.3s;
}

.sidebar .login-btn:hover {
    transform: scale(1.05);
}

/* Main Content Area */
.main-content {
    margin-left: 280px;
    flex: 1;
    padding: 40px;
}

/* Hero Section - Card Style */
.hero-card {
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.2), rgba(157, 78, 221, 0.2));
    border-radius: 20px;
    padding: 60px;
    margin-bottom: 50px;
    border: 2px solid var(--primary);
    box-shadow: 0 10px 40px rgba(123, 44, 191, 0.3);
}

.hero-card h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-card p {
    font-size: 1.3em;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Game Cards - 3 Column Layout */
.games-section {
    margin: 50px 0;
}

.games-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
    color: var(--secondary);
}

.games-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.game-card {
    width: calc(33.333% - 20px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(123, 44, 191, 0.3);
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 15px 40px rgba(255, 214, 10, 0.3);
}

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

.game-info {
    padding: 20px;
}

.game-info h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: var(--secondary);
}

.game-info p {
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #CCC;
}

.play-btn {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.play-btn:hover {
    background: var(--secondary);
    color: var(--dark);
}

/* FAQ Section - Accordion Style */
.faq-section {
    margin: 60px 0;
    background: rgba(123, 44, 191, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.faq-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: var(--secondary);
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 4px solid var(--primary);
}

.faq-item h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: var(--accent);
}

.faq-item p {
    line-height: 1.7;
    color: #DDD;
}

/* Reviews Section */
.reviews-section {
    margin: 60px 0;
}

.reviews-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
    color: var(--secondary);
}

.reviews-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.review-card {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid rgba(123, 44, 191, 0.3);
}

.review-card .stars {
    color: var(--secondary);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.review-card p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.review-card .author {
    font-weight: bold;
    color: var(--accent);
}

/* Footer */
footer {
    margin-top: 80px;
    background: rgba(16, 0, 43, 0.8);
    padding: 50px 0;
    border-top: 2px solid var(--primary);
}

.footer-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-col h4 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.3em;
}

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

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent);
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(123, 44, 191, 0.3);
    color: #999;
}

/* Responsive */
@media (max-width: 1024px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        border-right: none;
        border-bottom: 2px solid var(--primary);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .game-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .game-card {
        width: 100%;
    }
    
    .hero-card {
        padding: 30px;
    }
    
    .hero-card h1 {
        font-size: 2.5em;
    }
}
