/**
 * Dabet Theme Styles
 */

/* 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: #333;
    background-color: #f5f5f5;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

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

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

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

.dabet-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    min-height: 70px;
}

.dabet-primary-nav {
    flex: 1;
}

.dabet-nav-list {
    display: flex;
    gap: 30px;
}

.dabet-nav-list a {
    color: #fff;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.dabet-nav-list a:hover {
    color: #ffd700;
}

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

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

.dabet-auth-group {
    display: flex;
    gap: 15px;
    margin-left: 30px;
}

.dabet-btn-login,
.dabet-btn-register {
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.dabet-btn-login {
    color: #fff;
    border: 2px solid #ffd700;
}

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

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

.dabet-btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.dabet-menu-trigger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.dabet-bar {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s;
}

.dabet-mobile-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a2e;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.dabet-mobile-panel.active {
    display: block;
}

.dabet-mobile-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dabet-mobile-list a {
    color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dabet-mobile-auth {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Main Content */
.dabet-main-content {
    min-height: calc(100vh - 300px);
}

/* Hero Section */
.dabet-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.dabet-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.dabet-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

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

.dabet-btn-primary,
.dabet-btn-secondary {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

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

.dabet-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

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

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

/* Hero Mini */
.dabet-hero-mini {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.dabet-hero-mini h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.dabet-hero-mini p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

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

section.alt {
    background: #f9f9f9;
}

section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a2e;
}

section h2 + p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #666;
}

/* Brand Intro */
.dabet-brand-intro p {
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Advantages */
.dabet-advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.dabet-advantage-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.dabet-advantage-item:hover {
    transform: translateY(-5px);
}

.dabet-advantage-item h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.dabet-advantage-item p {
    color: #666;
    line-height: 1.7;
}

/* Products */
.dabet-product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.dabet-product-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.dabet-product-card:hover {
    transform: scale(1.05);
}

.dabet-product-card h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.dabet-product-card p {
    opacity: 0.9;
    line-height: 1.7;
}

/* CTA Section */
.dabet-cta {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    text-align: center;
    padding: 80px 0;
}

.dabet-cta h2 {
    color: #1a1a2e;
    margin-bottom: 20px;
}

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

.dabet-cta .dabet-btn-primary {
    background: #1a1a2e;
    color: #fff;
}

.dabet-cta .dabet-btn-primary:hover {
    background: #0f3460;
}

/* FAQ */
.dabet-faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.dabet-faq-item {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.dabet-faq-item h3 {
    color: #1a1a2e;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

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

/* Login Page */
.dabet-login-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.dabet-login-wrapper h2 {
    text-align: center;
    margin-bottom: 10px;
}

.dabet-login-wrapper > p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

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

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

.dabet-form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

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

.dabet-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
}

.dabet-forgot-link {
    color: #0f3460;
    font-weight: 500;
}

.dabet-forgot-link:hover {
    text-decoration: underline;
}

.dabet-btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    transition: transform 0.3s;
}

.dabet-btn-submit:hover {
    transform: translateY(-2px);
}

.dabet-login-alt {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.dabet-login-alt a {
    color: #0f3460;
    font-weight: 600;
}

/* Steps */
.dabet-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.dabet-step-item {
    text-align: center;
    padding: 30px;
}

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

.dabet-step-item h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
}

.dabet-step-item p {
    color: #666;
    line-height: 1.7;
}

/* Tips */
.dabet-tips-list,
.dabet-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.dabet-tip-card,
.dabet-tip-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #ffd700;
}

.dabet-tip-card h3,
.dabet-tip-item h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
}

.dabet-tip-card p,
.dabet-tip-item p {
    color: #666;
    line-height: 1.7;
}

/* Guide Sections */
.dabet-guide-content h3 {
    color: #1a1a2e;
    margin: 30px 0 15px;
    font-size: 1.3rem;
}

.dabet-guide-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.dabet-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.dabet-guide-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.dabet-guide-card h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
}

.dabet-guide-card p {
    color: #666;
    line-height: 1.7;
}

/* Timeline */
.dabet-timeline {
    max-width: 600px;
    margin: 50px auto 0;
    position: relative;
}

.dabet-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.dabet-timeline-item {
    padding-left: 50px;
    padding-bottom: 40px;
    position: relative;
}

.dabet-timeline-dot {
    position: absolute;
    left: 6px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: #ffd700;
    border-radius: 50%;
}

.dabet-timeline-item h3 {
    color: #1a1a2e;
    margin-bottom: 10px;
}

.dabet-timeline-item p {
    color: #666;
    line-height: 1.7;
}

/* Promotions */
.dabet-promo-highlight {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 80px 0;
}

.dabet-promo-highlight h2 {
    color: #ffd700;
}

.dabet-promo-highlight > .dabet-container > p {
    color: rgba(255,255,255,0.9);
}

.dabet-promo-details {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
}

.dabet-promo-info h3 {
    color: #ffd700;
    margin-bottom: 20px;
}

.dabet-promo-info ul {
    margin-bottom: 30px;
}

.dabet-promo-info li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-left: 25px;
    position: relative;
}

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

.dabet-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.dabet-promo-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.dabet-promo-card h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
}

.dabet-promo-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.dabet-promo-tag {
    display: inline-block;
    background: #ffd700;
    color: #1a1a2e;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* VIP Section */
.dabet-vip-section {
    background: #f9f9f9;
}

.dabet-vip-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.dabet-vip-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #ffd700;
}

.dabet-vip-item h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
}

.dabet-vip-item p {
    color: #666;
    line-height: 1.7;
}

/* Terms */
.dabet-terms-content h3 {
    color: #1a1a2e;
    margin: 30px 0 15px;
}

.dabet-terms-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* News */
.dabet-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.dabet-featured-item {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 30px;
    border-radius: 10px;
}

.dabet-featured-item h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

.dabet-featured-item p {
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 15px;
}

.dabet-news-date {
    font-size: 0.9rem;
    opacity: 0.7;
}

.dabet-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.dabet-category-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.dabet-category-card h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
}

.dabet-category-card p {
    color: #666;
    line-height: 1.7;
}

.dabet-news-items {
    max-width: 800px;
    margin: 50px auto 0;
}

.dabet-news-item {
    background: #fff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.dabet-news-item h3 {
    color: #1a1a2e;
    margin-bottom: 10px;
}

.dabet-news-item p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* Contact */
.dabet-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.dabet-contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.dabet-contact-card h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
}

.dabet-contact-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.dabet-contact-status {
    display: inline-block;
    background: #4caf50;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.dabet-support-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.dabet-support-item {
    background: #fff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #0f3460;
}

.dabet-support-item h3 {
    color: #1a1a2e;
    margin-bottom: 10px;
}

.dabet-support-item p {
    color: #666;
    line-height: 1.7;
}

.dabet-hours-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 700px;
    margin: 50px auto 0;
}

.dabet-hours-info {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.dabet-hours-info h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
}

.dabet-hours-info p {
    color: #666;
    margin-bottom: 5px;
}

/* Footer */
.dabet-footer {
    background: #1a1a2e;
    color: #fff;
    padding: 60px 0 30px;
}

.dabet-footer-nav {
    margin-bottom: 40px;
}

.dabet-footer-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.dabet-footer-list a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

.dabet-footer-list a:hover {
    color: #ffd700;
}

.dabet-footer-brand {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.dabet-footer-brand h3 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.dabet-footer-brand p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.dabet-footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.dabet-footer-copyright p {
    color: rgba(255,255,255,0.6);
}

.dabet-footer-seo {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.dabet-footer-seo p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .dabet-nav-list {
        display: none;
    }
    
    .dabet-auth-group {
        display: none;
    }
    
    .dabet-menu-trigger {
        display: flex;
    }
    
    .dabet-hero h1 {
        font-size: 2rem;
    }
    
    .dabet-hero p {
        font-size: 1rem;
    }
    
    .dabet-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .dabet-hero-mini h1 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .dabet-login-wrapper {
        padding: 30px 20px;
    }
    
    .dabet-form-options {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .dabet-footer-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .dabet-container {
        padding: 0 15px;
    }
    
    .dabet-hero {
        padding: 60px 0;
    }
    
    .dabet-hero h1 {
        font-size: 1.6rem;
    }
    
    .dabet-advantage-grid,
    .dabet-product-list,
    .dabet-promo-grid,
    .dabet-vip-levels,
    .dabet-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Image Styles */
.dabet-brand-image,
.dabet-advantage-image,
.dabet-products-image,
.dabet-atmosphere-image,
.dabet-experience-image,
.dabet-hero-image,
.dabet-tips-image,
.dabet-guide-image,
.dabet-withdrawal-image,
.dabet-promo-image,
.dabet-vip-image,
.dabet-featured-image,
.dabet-category-image,
.dabet-contact-image,
.dabet-support-image {
    margin: 30px auto;
    text-align: center;
    max-width: 800px;
}

.dabet-brand-image img,
.dabet-advantage-image img,
.dabet-products-image img,
.dabet-atmosphere-image img,
.dabet-experience-image img,
.dabet-hero-image img,
.dabet-tips-image img,
.dabet-guide-image img,
.dabet-withdrawal-image img,
.dabet-promo-image img,
.dabet-vip-image img,
.dabet-featured-image img,
.dabet-category-image img,
.dabet-contact-image img,
.dabet-support-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.dabet-casino-atmosphere,
.dabet-game-experience {
    padding: 80px 0;
    background: #f9f9f9;
}

.dabet-casino-atmosphere h2,
.dabet-game-experience h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.dabet-casino-atmosphere p,
.dabet-game-experience p {
    text-align: center;
    max-width: 700px;
    margin: 30px auto 0;
    color: #666;
    line-height: 1.8;
}
