/*
 * Dabet Theme Styles
 * Main stylesheet for Dabet WordPress Theme
 */

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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 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;
}

/* Wrapper */
.dabet-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.dabet-content {
    flex: 1;
}

/* Header */
.dabet-masthead {
    background-color: #1a1a2e;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.dabet-primary-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.dabet-toggle-bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

.dabet-nav-list li a {
    color: #fff;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.dabet-nav-list li a:hover {
    background-color: #e94560;
    color: #fff;
}

.dabet-auth-section {
    display: flex;
    gap: 10px;
}

/* Buttons */
.dabet-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

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

.dabet-btn-register {
    background-color: #e94560;
    color: #fff;
}

.dabet-btn-register:hover {
    background-color: #c73e54;
}

.dabet-btn-primary {
    background-color: #e94560;
    color: #fff;
    padding: 12px 30px;
}

.dabet-btn-primary:hover {
    background-color: #c73e54;
}

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

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

.dabet-btn-large {
    background-color: #e94560;
    color: #fff;
    padding: 15px 40px;
    font-size: 1.1rem;
}

.dabet-btn-large:hover {
    background-color: #c73e54;
}

.dabet-btn-small {
    background-color: #e94560;
    color: #fff;
    padding: 8px 16px;
    font-size: 0.9rem;
}

.dabet-btn-submit {
    background-color: #e94560;
    color: #fff;
    width: 100%;
    padding: 12px;
    font-size: 1rem;
}

.dabet-btn-submit:hover {
    background-color: #c73e54;
}

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

.dabet-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

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

/* Intro Section */
.dabet-intro {
    padding: 80px 0;
    background-color: #fff;
}

.dabet-intro h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1a1a2e;
    text-align: center;
}

.dabet-intro p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
}

/* Features Section */
.dabet-features {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.dabet-features h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    color: #1a1a2e;
    text-align: center;
}

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

.dabet-feature-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.dabet-feature-card:hover {
    transform: translateY(-5px);
}

.dabet-feature-card h3 {
    color: #e94560;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.dabet-feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Products Section */
.dabet-products {
    padding: 80px 0;
    background-color: #fff;
}

.dabet-products h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    color: #1a1a2e;
    text-align: center;
}

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

.dabet-product-item {
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dabet-product-item:hover {
    border-color: #e94560;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.1);
}

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

.dabet-product-item p {
    color: #666;
    line-height: 1.6;
}

/* Transaction Section */
.dabet-transaction {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.dabet-transaction h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    color: #1a1a2e;
    text-align: center;
}

.dabet-transaction-content {
    max-width: 800px;
    margin: 0 auto;
}

.dabet-transaction-step {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #e94560;
}

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

.dabet-transaction-step p {
    color: #666;
    line-height: 1.6;
}

/* Promo Section */
.dabet-promo {
    padding: 80px 0;
    background: linear-gradient(135deg, #e94560 0%, #c73e54 100%);
    color: #fff;
    text-align: center;
}

.dabet-promo h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.dabet-promo-content p {
    max-width: 700px;
    margin: 0 auto 20px;
    opacity: 0.95;
}

.dabet-promo-actions {
    margin-top: 30px;
}

.dabet-promo-actions .dabet-btn-primary {
    background-color: #fff;
    color: #e94560;
}

.dabet-promo-actions .dabet-btn-primary:hover {
    background-color: #f0f0f0;
}

/* FAQ Section */
.dabet-faq {
    padding: 80px 0;
    background-color: #fff;
}

.dabet-faq h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    color: #1a1a2e;
    text-align: center;
}

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

.dabet-faq-item {
    padding: 25px;
    margin-bottom: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

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

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

.dabet-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.dabet-cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

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

.dabet-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.dabet-footer h3 {
    color: #e94560;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.dabet-footer p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.dabet-footer-list li a {
    color: #aaa;
    transition: color 0.3s ease;
}

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

.dabet-footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.dabet-copyright {
    color: #888;
    margin-bottom: 15px;
}

.dabet-seo-text {
    color: #666;
    font-size: 0.9rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Login Page Styles */
.dabet-login-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.dabet-login-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.dabet-login-hero p {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.dabet-login-form-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.dabet-login-wrapper {
    max-width: 450px;
    margin: 0 auto;
}

.dabet-login-box {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.dabet-login-box h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.dabet-login-box > 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;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

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

.dabet-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

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

.dabet-forgot-link {
    color: #e94560;
}

.dabet-login-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eee;
    color: #666;
}

.dabet-login-footer a {
    color: #e94560;
    font-weight: 600;
}

/* Promo Page Styles */
.dabet-promo-hero {
    background: linear-gradient(135deg, #e94560 0%, #c73e54 100%);
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.dabet-promo-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.dabet-promo-hero p {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

.dabet-promo-highlight {
    padding: 80px 0;
    background-color: #fff;
}

.dabet-promo-highlight h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a2e;
}

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

.dabet-promo-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.dabet-promo-card:hover {
    border-color: #e94560;
}

.dabet-promo-featured {
    background: linear-gradient(135deg, #e94560 0%, #c73e54 100%);
    color: #fff;
}

.dabet-promo-card h3 {
    margin-bottom: 15px;
}

.dabet-promo-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e94560;
    margin-bottom: 15px;
}

.dabet-promo-featured .dabet-promo-value {
    color: #fff;
}

.dabet-promo-card p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.dabet-promo-list {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.dabet-promo-list h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a2e;
}

.dabet-promo-detail-item {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.dabet-promo-detail-item h3 {
    color: #e94560;
    margin-bottom: 15px;
}

.dabet-promo-detail-item p {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Guide Page Styles */
.dabet-guide-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.dabet-guide-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.dabet-guide-hero p {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.dabet-guide-register,
.dabet-guide-deposit,
.dabet-guide-betting,
.dabet-guide-withdraw {
    padding: 80px 0;
}

.dabet-guide-register,
.dabet-guide-betting {
    background-color: #fff;
}

.dabet-guide-deposit,
.dabet-guide-withdraw {
    background-color: #f8f9fa;
}

.dabet-guide-content h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.dabet-guide-content > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #666;
}

.dabet-guide-steps,
.dabet-deposit-methods,
.dabet-betting-guide-grid,
.dabet-withdraw-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.dabet-guide-step-item,
.dabet-method-item,
.dabet-betting-type,
.dabet-withdraw-step {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #e94560;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.dabet-guide-step-item h3,
.dabet-method-item h3,
.dabet-betting-type h3,
.dabet-withdraw-step h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
}

/* Games Page Styles */
.dabet-games-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.dabet-games-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.dabet-games-hero p {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.dabet-games-sports,
.dabet-games-casino,
.dabet-games-slots,
.dabet-games-providers {
    padding: 80px 0;
}

.dabet-games-sports,
.dabet-games-slots {
    background-color: #fff;
}

.dabet-games-casino,
.dabet-games-providers {
    background-color: #f8f9fa;
}

.dabet-games-content h2,
.dabet-casino-content h2,
.dabet-slots-content h2,
.dabet-providers-content h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.dabet-games-content > p,
.dabet-casino-content > p,
.dabet-slots-content > p,
.dabet-providers-content > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #666;
}

.dabet-sports-grid,
.dabet-casino-grid,
.dabet-slots-features,
.dabet-providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.dabet-sport-item,
.dabet-casino-item,
.dabet-slot-feature,
.dabet-provider-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.dabet-sport-item h3,
.dabet-casino-item h3,
.dabet-slot-feature h3,
.dabet-provider-item h3 {
    color: #e94560;
    margin-bottom: 15px;
}

/* Contact Page Styles */
.dabet-contact-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.dabet-contact-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.dabet-contact-hero p {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.dabet-contact-channels,
.dabet-contact-services {
    padding: 80px 0;
}

.dabet-contact-channels {
    background-color: #fff;
}

.dabet-contact-services {
    background-color: #f8f9fa;
}

.dabet-contact-channels h2,
.dabet-contact-services h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a2e;
}

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

.dabet-contact-item,
.dabet-service-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.dabet-contact-item h3,
.dabet-service-item h3 {
    color: #e94560;
    margin-bottom: 15px;
}

.dabet-contact-item p,
.dabet-service-item p {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Common Section Styles for Inner Pages */
.dabet-login-features,
.dabet-login-steps,
.dabet-login-tips,
.dabet-login-faq,
.dabet-promo-terms,
.dabet-promo-calendar,
.dabet-promo-faq,
.dabet-guide-tips,
.dabet-guide-faq,
.dabet-games-tips,
.dabet-games-faq,
.dabet-contact-faq,
.dabet-contact-security,
.dabet-contact-feedback {
    padding: 80px 0;
}

.dabet-login-features,
.dabet-login-tips,
.dabet-promo-calendar,
.dabet-guide-tips,
.dabet-games-tips,
.dabet-contact-security {
    background-color: #fff;
}

.dabet-login-steps,
.dabet-login-faq,
.dabet-promo-terms,
.dabet-promo-faq,
.dabet-guide-faq,
.dabet-games-faq,
.dabet-contact-faq,
.dabet-contact-feedback {
    background-color: #f8f9fa;
}

.dabet-login-features h2,
.dabet-login-steps h2,
.dabet-login-tips h2,
.dabet-login-faq h2,
.dabet-promo-terms h2,
.dabet-promo-calendar h2,
.dabet-promo-faq h2,
.dabet-guide-tips h2,
.dabet-guide-faq h2,
.dabet-games-tips h2,
.dabet-games-faq h2,
.dabet-contact-faq h2,
.dabet-contact-security h2,
.dabet-contact-feedback h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a2e;
}

.dabet-login-features-grid,
.dabet-login-steps-content,
.dabet-tips-grid,
.dabet-login-faq-list,
.dabet-terms-content,
.dabet-calendar-content,
.dabet-promo-faq-list,
.dabet-game-tips-grid,
.dabet-games-faq-list,
.dabet-contact-faq-list {
    max-width: 1000px;
    margin: 0 auto;
}

.dabet-login-feature-item,
.dabet-step-item,
.dabet-tip-item,
.dabet-login-faq-item,
.dabet-calendar-item,
.dabet-promo-faq-item,
.dabet-game-tip,
.dabet-games-faq-item,
.dabet-contact-faq-item {
    background-color: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.dabet-login-feature-item h3,
.dabet-step-item h3,
.dabet-tip-item h3,
.dabet-login-faq-item h3,
.dabet-calendar-item h3,
.dabet-promo-faq-item h3,
.dabet-game-tip h3,
.dabet-games-faq-item h3,
.dabet-contact-faq-item h3 {
    color: #e94560;
    margin-bottom: 10px;
}

.dabet-terms-content p,
.dabet-security-content p,
.dabet-feedback-content p {
    max-width: 800px;
    margin: 0 auto 15px;
    color: #666;
    line-height: 1.6;
}

/* Login CTA */
.dabet-login-cta,
.dabet-promo-cta,
.dabet-guide-cta,
.dabet-games-cta,
.dabet-contact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    text-align: center;
}

.dabet-login-cta h2,
.dabet-promo-cta h2,
.dabet-guide-cta h2,
.dabet-games-cta h2,
.dabet-contact-cta h2 {
    margin-bottom: 20px;
}

.dabet-login-cta p,
.dabet-promo-cta p,
.dabet-guide-cta p,
.dabet-games-cta p,
.dabet-contact-cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

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

    .dabet-nav-wrapper {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 60px);
        background-color: #1a1a2e;
        transition: left 0.3s ease;
        padding: 20px;
    }

    .dabet-nav-wrapper.active {
        left: 0;
    }

    .dabet-nav-list {
        flex-direction: column;
        gap: 10px;
    }

    .dabet-nav-list li a {
        display: block;
        padding: 12px;
    }

    .dabet-auth-section {
        gap: 8px;
    }

    .dabet-btn-login,
    .dabet-btn-register {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

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

    .dabet-hero h1 {
        font-size: 1.8rem;
    }

    .dabet-hero p {
        font-size: 1rem;
    }

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

    .dabet-intro,
    .dabet-features,
    .dabet-products,
    .dabet-transaction,
    .dabet-promo,
    .dabet-faq,
    .dabet-cta,
    .dabet-login-hero,
    .dabet-login-form-section,
    .dabet-login-features,
    .dabet-login-steps,
    .dabet-login-tips,
    .dabet-login-faq,
    .dabet-login-cta,
    .dabet-promo-hero,
    .dabet-promo-highlight,
    .dabet-promo-list,
    .dabet-promo-terms,
    .dabet-promo-calendar,
    .dabet-promo-faq,
    .dabet-promo-cta,
    .dabet-guide-hero,
    .dabet-guide-register,
    .dabet-guide-deposit,
    .dabet-guide-betting,
    .dabet-guide-withdraw,
    .dabet-guide-tips,
    .dabet-guide-faq,
    .dabet-guide-cta,
    .dabet-games-hero,
    .dabet-games-sports,
    .dabet-games-casino,
    .dabet-games-slots,
    .dabet-games-providers,
    .dabet-games-tips,
    .dabet-games-faq,
    .dabet-games-cta,
    .dabet-contact-hero,
    .dabet-contact-channels,
    .dabet-contact-services,
    .dabet-contact-faq,
    .dabet-contact-security,
    .dabet-contact-feedback,
    .dabet-contact-cta {
        padding: 50px 0;
    }

    .dabet-intro h2,
    .dabet-features h2,
    .dabet-products h2,
    .dabet-transaction h2,
    .dabet-promo h2,
    .dabet-faq h2,
    .dabet-cta h2,
    .dabet-login-hero h1,
    .dabet-login-features h2,
    .dabet-login-steps h2,
    .dabet-login-tips h2,
    .dabet-login-faq h2,
    .dabet-login-cta h2,
    .dabet-promo-hero h1,
    .dabet-promo-highlight h2,
    .dabet-promo-list h2,
    .dabet-promo-terms h2,
    .dabet-promo-calendar h2,
    .dabet-promo-faq h2,
    .dabet-promo-cta h2,
    .dabet-guide-hero h1,
    .dabet-guide-content h2,
    .dabet-guide-tips h2,
    .dabet-guide-faq h2,
    .dabet-guide-cta h2,
    .dabet-games-hero h1,
    .dabet-games-content h2,
    .dabet-casino-content h2,
    .dabet-slots-content h2,
    .dabet-providers-content h2,
    .dabet-games-tips h2,
    .dabet-games-faq h2,
    .dabet-games-cta h2,
    .dabet-contact-hero h1,
    .dabet-contact-channels h2,
    .dabet-contact-services h2,
    .dabet-contact-faq h2,
    .dabet-contact-security h2,
    .dabet-contact-feedback h2,
    .dabet-contact-cta h2 {
        font-size: 1.5rem;
    }

    .dabet-features-grid,
    .dabet-products-grid,
    .dabet-guide-steps,
    .dabet-deposit-methods,
    .dabet-betting-guide-grid,
    .dabet-withdraw-steps,
    .dabet-sports-grid,
    .dabet-casino-grid,
    .dabet-slots-features,
    .dabet-providers-grid,
    .dabet-contact-grid,
    .dabet-services-content {
        grid-template-columns: 1fr;
    }

    .dabet-login-box {
        padding: 25px;
    }

    .dabet-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Image Styles */
.dabet-hero-image,
.dabet-intro-image,
.dabet-features-image,
.dabet-transaction-image,
.dabet-faq-image,
.dabet-cta-image,
.dabet-login-hero-image,
.dabet-promo-hero-image,
.dabet-guide-hero-image,
.dabet-games-hero-image,
.dabet-contact-hero-image {
    margin: 30px 0;
    text-align: center;
}

.dabet-hero-image img,
.dabet-intro-image img,
.dabet-features-image img,
.dabet-transaction-image img,
.dabet-faq-image img,
.dabet-cta-image img,
.dabet-login-hero-image img,
.dabet-promo-hero-image img,
.dabet-guide-hero-image img,
.dabet-games-hero-image img,
.dabet-contact-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.dabet-intro-grid,
.dabet-cta-grid,
.dabet-login-hero-grid,
.dabet-promo-hero-grid,
.dabet-guide-hero-grid,
.dabet-games-hero-grid,
.dabet-contact-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .dabet-intro-grid,
    .dabet-cta-grid,
    .dabet-login-hero-grid,
    .dabet-promo-hero-grid,
    .dabet-guide-hero-grid,
    .dabet-games-hero-grid,
    .dabet-contact-hero-grid {
        grid-template-columns: 1fr;
    }

    .dabet-hero-image,
    .dabet-intro-image,
    .dabet-features-image,
    .dabet-transaction-image,
    .dabet-faq-image,
    .dabet-cta-image,
    .dabet-login-hero-image,
    .dabet-promo-hero-image,
    .dabet-guide-hero-image,
    .dabet-games-hero-image,
    .dabet-contact-hero-image {
        margin: 20px 0;
    }
}

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

    .dabet-hero h1 {
        font-size: 1.5rem;
    }

    .dabet-btn-large {
        padding: 12px 30px;
        font-size: 1rem;
    }
}
