/*
 * MAY88 Theme Styles
 * Casino/Gambling Theme - Dark Style
 */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0a0a0a;
}

a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffed4e;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding .site-title {
    font-size: 28px;
    font-weight: bold;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brand-text {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #e0e0e0;
    font-weight: 500;
    text-transform: capitalize;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-icon {
    display: block;
    width: 25px;
    height: 3px;
    background: #ffd700;
    position: relative;
    transition: background 0.3s ease;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: #ffd700;
    transition: transform 0.3s ease;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    top: 8px;
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #1a1a2e;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffa500 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.btn-secondary:hover {
    background: #ffd700;
    color: #1a1a2e;
}

.btn-login {
    background: transparent;
    color: #e0e0e0;
    border: 1px solid #444;
}

.btn-login:hover {
    border-color: #ffd700;
    color: #ffd700;
}

.btn-register {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #1a1a2e;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-large {
    padding: 15px 35px;
    font-size: 16px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 50%, #1a1a2e 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 42px;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 20px;
    text-transform: capitalize;
    line-height: 1.2;
}

.hero-desc {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    color: #ffd700;
    text-transform: capitalize;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    color: #ffd700;
    text-transform: capitalize;
    margin-bottom: 15px;
}

/* About Section */
.about-section {
    background: #0f0f1a;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    color: #b0b0b0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 10px;
    border: 1px solid #333;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #ffd700;
}

.stat-label {
    color: #888;
    font-size: 14px;
}

/* License Section */
.license-section {
    background: #0a0a0a;
}

.license-table {
    overflow-x: auto;
}

.license-table table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a2e;
    border-radius: 10px;
    overflow: hidden;
}

.license-table th,
.license-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.license-table th {
    background: #16213e;
    color: #ffd700;
    font-weight: 600;
    text-transform: capitalize;
}

.license-table td {
    color: #e0e0e0;
}

.license-table tr:last-child td {
    border-bottom: none;
}

/* Features Section */
.features-section {
    background: #0f0f1a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.feature-card h3 {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.feature-card p {
    color: #b0b0b0;
}

/* Games Section */
.games-section {
    background: #0a0a0a;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.game-item {
    background: #1a1a2e;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.game-item h3 {
    color: #ffd700;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.game-item p {
    color: #888;
    font-size: 14px;
}

/* Promo Section */
.promo-section {
    background: #0f0f1a;
}

.promo-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.promo-item {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #444;
    position: relative;
}

.promo-item h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

.promo-item p {
    color: #b0b0b0;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.cta-content p {
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq-section {
    background: #0a0a0a;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a2e;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #333;
}

.faq-item h3 {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 18px;
    text-transform: capitalize;
}

.faq-item p {
    color: #888;
}

/* SEO Content Section */
.seo-content-section {
    background: #0f0f1a;
}

.seo-content h2 {
    color: #ffd700;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: capitalize;
}

.seo-content p {
    color: #888;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Login Section */
.login-section {
    background: #0a0a0a;
    padding: 60px 0;
}

.login-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.login-form-container,
.register-form-container {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #333;
}

.login-form-container h2,
.register-form-container h2 {
    color: #ffd700;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.form-desc {
    color: #888;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #e0e0e0;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px 15px;
    background: #0a0a0a;
    border: 1px solid #444;
    border-radius: 5px;
    color: #e0e0e0;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #ffd700;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888;
    cursor: pointer;
}

.remember-me input {
    accent-color: #ffd700;
}

.forgot-password {
    color: #ffd700;
    font-size: 14px;
}

.form-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #333;
    color: #888;
}

.form-footer a {
    color: #ffd700;
    font-weight: 600;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.terms-label {
    color: #888;
    font-size: 14px;
    line-height: 1.5;
}

.terms-label a {
    color: #ffd700;
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    background: #0f0f1a;
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #ffd700;
}

.benefit-item h3 {
    color: #ffd700;
    margin-bottom: 8px;
    font-size: 16px;
}

.benefit-item p {
    color: #888;
    font-size: 14px;
}

/* Guide Section */
.guide-section {
    background: #0f0f1a;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.guide-step,
.step-item {
    text-align: center;
    padding: 30px;
    background: #1a1a2e;
    border-radius: 10px;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #1a1a2e;
    font-weight: bold;
    font-size: 20px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.guide-step h3,
.step-item h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

.guide-step p,
.step-item p {
    color: #888;
    font-size: 14px;
}

/* Steps Section */
.steps-section {
    background: #0a0a0a;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.step-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333;
    text-align: center;
}

.step-num {
    display: inline-block;
    font-size: 48px;
    font-weight: bold;
    color: rgba(255, 215, 0, 0.2);
    margin-bottom: 15px;
}

.step-card h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

.step-card p {
    color: #888;
    font-size: 14px;
}

/* Tips Section */
.tips-section {
    background: #0f0f1a;
}

.tips-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.tip-box {
    background: #1a1a2e;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #444;
}

.tip-box h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

.tip-box p {
    color: #888;
    font-size: 14px;
}

/* VIP Section */
.vip-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.vip-content {
    text-align: center;
}

.vip-content > p {
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto 40px;
}

.vip-benefits,
.vip-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.vip-item,
.vip-promo-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #444;
}

.vip-item h3,
.vip-promo-item h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

.vip-item p,
.vip-promo-item p {
    color: #888;
    font-size: 14px;
}

.vip-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.vip-level {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #444;
}

.vip-level h3 {
    color: #ffd700;
    font-size: 24px;
    margin-bottom: 5px;
}

.vip-level > p {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.vip-level ul {
    list-style: none;
}

.vip-level li {
    color: #b0b0b0;
    padding: 5px 0;
    font-size: 14px;
}

/* Requirements Section */
.requirements-section {
    background: #0a0a0a;
}

.requirements-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.requirement-box {
    background: #1a1a2e;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.requirement-box h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

.requirement-box p {
    color: #888;
    font-size: 14px;
}

/* Security Section */
.security-section {
    background: #0f0f1a;
}

.security-content {
    text-align: center;
}

.security-content > p {
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto 40px;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.security-item {
    background: #1a1a2e;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #333;
}

.security-item h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

.security-item p {
    color: #888;
    font-size: 14px;
}

/* Promo Cards */
.promo-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 0;
    text-align: center;
}

.promo-hero-content h2 {
    font-size: 36px;
    color: #ffd700;
    margin-bottom: 15px;
}

.promo-subtitle {
    color: #b0b0b0;
    font-size: 18px;
}

.promo-list-section {
    background: #0a0a0a;
}

.promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.promo-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #444;
    position: relative;
}

.promo-card.featured {
    border-color: #ffd700;
    transform: scale(1.05);
}

.promo-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ff4444 0%, #ff0000 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.promo-card h3 {
    color: #ffd700;
    font-size: 22px;
    margin-bottom: 10px;
}

.promo-value {
    font-size: 28px;
    font-weight: bold;
    color: #ff8c00;
    margin-bottom: 15px;
}

.promo-card > p {
    color: #888;
    margin-bottom: 20px;
}

.promo-details {
    list-style: none;
    margin-bottom: 25px;
}

.promo-details li {
    color: #b0b0b0;
    padding: 5px 0;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.promo-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
}

/* Daily Promo */
.daily-promo-section {
    background: #0f0f1a;
}

.daily-promo-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.daily-promo-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    background: #1a1a2e;
    padding: 20px;
    border-radius: 10px;
    align-items: center;
}

.promo-day {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #1a1a2e;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

.promo-content h3 {
    color: #ffd700;
    margin-bottom: 5px;
}

.promo-content p {
    color: #888;
    font-size: 14px;
}

/* Special Promo */
.special-promo-section {
    background: #0a0a0a;
}

.special-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.special-promo-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #444;
    text-align: center;
}

.special-promo-card h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

.special-promo-card p {
    color: #888;
}

/* Terms Section */
.terms-section {
    background: #0f0f1a;
}

.terms-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.term-box {
    background: #1a1a2e;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #333;
}

.term-box h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

.term-box p {
    color: #888;
    font-size: 14px;
}

/* How To Section */
.how-to-section {
    background: #0a0a0a;
}

.how-to-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.how-to-step {
    text-align: center;
    padding: 30px;
    background: #1a1a2e;
    border-radius: 10px;
    position: relative;
}

.how-to-step .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #1a1a2e;
    font-weight: bold;
    font-size: 20px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.how-to-step h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

.how-to-step p {
    color: #888;
    font-size: 14px;
}

/* Deposit/Withdraw Sections */
.deposit-intro,
.withdraw-intro {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 0;
    text-align: center;
}

.intro-content h2 {
    font-size: 32px;
    color: #ffd700;
    margin-bottom: 15px;
}

.intro-content p {
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto;
}

.deposit-methods,
.withdraw-methods {
    background: #0a0a0a;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.method-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #444;
}

.method-card h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

.method-card > p {
    color: #888;
    margin-bottom: 20px;
    font-size: 14px;
}

.method-features {
    list-style: none;
}

.method-features li {
    color: #b0b0b0;
    padding: 5px 0;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.method-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
}

.deposit-guide,
.withdraw-guide {
    background: #0f0f1a;
}

.deposit-limits,
.withdraw-limits {
    background: #0a0a0a;
}

.limits-table {
    overflow-x: auto;
}

.limits-table table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a2e;
    border-radius: 10px;
    overflow: hidden;
}

.limits-table th,
.limits-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.limits-table th {
    background: #16213e;
    color: #ffd700;
    font-weight: 600;
}

.limits-table td {
    color: #e0e0e0;
}

.deposit-promo {
    background: #0f0f1a;
}

.promo-box {
    background: #1a1a2e;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.promo-box h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

.promo-box p {
    color: #888;
    font-size: 14px;
}

.withdraw-time {
    background: #0f0f1a;
}

.time-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.time-box {
    background: #1a1a2e;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #333;
}

.time-box h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

.time-box p {
    color: #888;
    font-size: 14px;
}

.conditions-section {
    background: #0a0a0a;
}

.conditions-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.condition-box {
    background: #1a1a2e;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #444;
}

.condition-box h3 {
    color: #ffd700;
    margin-bottom: 10px;
}

.condition-box p {
    color: #888;
    font-size: 14px;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
    padding: 60px 0 30px;
    border-top: 1px solid #333;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .footer-title {
    font-size: 24px;
    color: #ffd700;
    margin-bottom: 15px;
}

.footer-brand .footer-desc {
    color: #888;
    font-size: 14px;
    line-height: 1.8;
}

.footer-nav h4,
.footer-links h4,
.footer-support h4 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-menu,
.footer-links ul {
    list-style: none;
}

.footer-menu li,
.footer-links li {
    margin-bottom: 10px;
}

.footer-menu a,
.footer-links a {
    color: #888;
    font-size: 14px;
}

.footer-menu a:hover,
.footer-links a:hover {
    color: #ffd700;
}

.footer-support p {
    color: #888;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-seo-text {
    padding: 30px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin-bottom: 30px;
}

.footer-seo-text p {
    color: #666;
    font-size: 13px;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
}

.copyright {
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
}

.license {
    color: #666;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a2e;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        display: flex;
    }

    .header-actions {
        display: none;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .login-wrapper,
    .register-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .daily-promo-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .page-header h1 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 50px 0;
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 24px;
    }

    .btn-large {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Screen Reader Text */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Images */
.hero-image,
.about-image,
.feature-image,
.game-image,
.login-image,
.register-image,
.promo-image,
.intro-image {
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
}

.hero-image img,
.about-image img,
.feature-image img,
.game-image img,
.login-image img,
.register-image img,
.promo-image img,
.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.hero-image {
    max-width: 600px;
    margin: 30px auto;
}

.about-image {
    max-width: 500px;
    margin: 20px auto;
}

.feature-image {
    margin-bottom: 15px;
    border-radius: 8px;
}

.feature-image img {
    border-radius: 8px;
}

.game-image {
    margin-bottom: 15px;
    border-radius: 8px;
}

.game-image img {
    border-radius: 8px;
}

.login-image,
.register-image {
    max-width: 400px;
    margin: 0 auto 20px;
}

.promo-image,
.intro-image {
    max-width: 500px;
    margin: 20px auto;
}
