/* ==========================================================================
   Premium Dark Casino Landing Page Styles
   ========================================================================== */

:root {
    --bg-deep: #07070a;
    --bg-surface: #121217;
    --bg-surface-hover: #1c1c24;
    --bg-glass: rgba(255, 255, 255, 0.03);
    
    --accent: #ffc95c;
    --accent-glow: rgba(255, 201, 92, 0.4);
    
    --text-main: #f8f9fa;
    --text-muted: #adb5bd;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(255, 201, 92, 0.2);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Base Styles */
body.dark-theme {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

p {margin: 0;}

p + p{ margin-top: 10px;}

ul {
    list-style: none;
    padding: 0;
}

/* Utilities */
.text-accent {
    color: var(--accent) !important;
}

.bg-darker {
    background-color: #040406;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Buttons */
.btn-accent {
    background-color: var(--accent);
    color: #000;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
}

.btn-accent:hover {
    background-color: #ffd984;
    color: #000;
    transform: translateY(-2px);
}

.btn-outline-accent {
    border: 1px solid var(--accent);
    color: var(--accent);
    background: transparent;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    transition: var(--transition);
}

.btn-outline-accent:hover {
    background-color: var(--accent);
    color: #000;
    box-shadow: 0 0 15px var(--accent-glow);
}

.shadow-glow {
    box-shadow: 0 0 20px var(--accent-glow);
}

.shadow-glow:hover {
    box-shadow: 0 0 35px rgba(255, 201, 92, 0.6);
}

/* Navigation */
.premium-nav {
    background: rgba(7, 7, 10, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff !important;
    letter-spacing: -0.5px;
    margin: 0;
}

.brand-logo span {
    color: var(--accent);
}

.navbar-nav .nav-link {
    color: var(--text-main);
    font-weight: 500;
    margin: 0 10px;
}

.navbar-nav .nav-link:hover {
    color: var(--accent);
}

.navbar-toggler {
    border-color: var(--border-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 201, 92, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 100px;
    background: radial-gradient(circle at 50% 30%, rgba(255, 201, 92, 0.08) 0%, transparent 60%);
}

.premium-badge {
    background: var(--bg-surface);
    border: 1px solid var(--border-accent);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 750px;
}

/* Info Cards */
.info-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    height: 100%;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    column-gap: 10px;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-accent);
    background: var(--bg-surface-hover);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* What is Casino ID */
.what-is-section {
    position: relative;
    background: linear-gradient(rgba(7, 7, 10, 0.8), rgba(7, 7, 10, 0.95)), url('../images/casino-bg.png') center/cover fixed;
}

.glass-box {
    background: rgba(18, 18, 23, 0.4);
    backdrop-filter: blur(25px);
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

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

.feature-list li {
    margin-bottom: 1rem;
    padding-left: 0;
    position: relative;
    color: var(--text-muted);
}

.feature-list li strong {
    color: var(--text-main);
}

/* Stepper Section */
.step-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.step-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-5px);
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
}

.step-card h4 {
    margin-top: 1rem;
    color: var(--accent);
    position: relative;
    z-index: 1;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* CTA Banner */
.cta-box {
    background: linear-gradient(135deg, rgba(255, 201, 92, 0.1) 0%, rgba(18, 18, 23, 1) 100%);
    border: 1px solid var(--border-accent);
}

/* Partner Cards */
.partner-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition);
}

.partner-card:hover {
    background: var(--bg-surface-hover);
    border-color: var(--accent);
    transform: translateY(-5px);
}

/* Trust Cards */
.trust-card {
    background: transparent;
    padding: 1.5rem;
    border-left: 2px solid var(--border-color);
    transition: var(--transition);
}

.trust-card:hover {
    border-left-color: var(--accent);
    background: rgba(255, 255, 255, 0.02);
}

.trust-icon {
    font-size: 2.5rem;
}

.trust-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.trust-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Sports Tags */
.game-tag {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    cursor: default;
}

.game-tag:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    transform: scale(1.05);
}

/* About Us Section */
.vertical-image {
    min-height: 500px;
    background: url('https://images.unsplash.com/photo-1511512578047-dfb367046420?auto=format&fit=crop&q=80') center/cover;
    position: relative;
    overflow: hidden;
}

.image-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding-top: 50px !important;
}

.shadow-accent {
    box-shadow: -15px 15px 0 rgba(255, 201, 92, 0.1);
}

.feature-bullet-list li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.feature-bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
}

/* Review Cards */
.review-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    color: #fff;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.review-text {
    font-style: italic;
    color: var(--text-muted);
}

/* Accordion */
.premium-accordion .accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
}

.premium-accordion .accordion-button {
    background-color: var(--bg-surface);
    color: var(--text-main);
    font-weight: 600;
    padding: 1.25rem;
    border-radius: 10px !important;
    box-shadow: none;
}

.premium-accordion .accordion-button:not(.collapsed) {
    background-color: var(--bg-surface-hover);
    color: var(--accent);
    border: 1px solid var(--border-accent);
}

.premium-accordion .accordion-button::after {
    filter: invert(1);
}

.premium-accordion .accordion-body {
    color: var(--text-muted);
    padding: 1.25rem;
}

/* Footer */
.site-footer {
    background-color: #040406;
}

.footer-brand span {
    color: var(--accent);
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================================================
   NEW ADDITIONS & MODIFICATIONS
   ========================================================================== */

/* Dice Animation & Placement */
.dice-container {
    position: absolute;
    font-size: 4rem;
    z-index: 0;
    opacity: 0.15;
    animation: rotateDice 20s linear infinite;
}
.dice-hero { top: 20%; right: 10%; }
.dice-trust { top: 10%; left: 5%; }

@keyframes rotateDice {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

/* CTA Background Elements */
.cta-bg-element {
    position: absolute;
    font-size: 5rem;
    opacity: 0.1;
    z-index: 0;
    animation: floatElement 10s ease-in-out infinite;
}
.cta-dice { bottom: -20px; left: 10%; animation-delay: 0s; }
.cta-chips { top: -20px; right: 10%; animation-delay: -5s; }

@keyframes floatElement {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.cta-btn-animated {
    position: relative;
    overflow: hidden;
}
.cta-btn-animated::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: btnGlow 3s linear infinite;
}
@keyframes btnGlow {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Partner Showcase Cards */
.partner-showcase-card {
    background: linear-gradient(to bottom, var(--bg-surface), var(--bg-surface-hover));
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.partner-showcase-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: var(--transition);
}
.partner-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: var(--border-accent);
}
.partner-showcase-card:hover::before {
    transform: scaleX(1);
}
.partner-badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 201, 92, 0.1);
    color: var(--accent);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.bg-glass {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    font-weight: normal;
    padding: 6px 10px;
}
.btn-compact {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
}

/* Sports Cards */
.sport-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: var(--transition);
    font-weight: 500;
    cursor: default;
}
.sport-card:hover {
    background: var(--bg-surface-hover);
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

/* Blog Cards */
.blog-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-accent);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}
.blog-img-wrapper {
    overflow: hidden;
    height: 200px;
}
.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}
.blog-content h4 {
    font-size: 1.2rem;
    line-height: 1.4;
}

/* Responsible Box */
.responsible-box {
    background: linear-gradient(to right, rgba(255,193,7,0.1), rgba(255,193,7,0.02));
    border: 1px solid rgba(255,193,7,0.3);
}

/* Footer Redesign */
.premium-footer {
    background: linear-gradient(to bottom, var(--bg-deep), #000);
}
.footer-heading {
    font-size: 1.25rem;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: var(--accent);
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: var(--text-muted);
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--bg-surface-hover);
    color: #fff;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.social-icon:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    transform: translateY(-3px);
}

/* Floating Social Icons */
.floating-icons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}
.float-btn {
    width: 55px; height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: var(--transition);
    animation: pulseGlow 2s infinite;
}
.float-whatsapp { background: #25D366; }
.float-telegram { background: #0088cc; }

.float-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(255, 201, 92, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 201, 92, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 201, 92, 0); }
}

/* Who we are fix */
.content-text {
    color: #e0e0e0 !important;
}
.content-text p {
    line-height: 1.8;
}

/* Background Gradients */
.bg-darker {
    background: linear-gradient(180deg, #040406 0%, #0a0a0f 100%);
}



.page-header {
  padding: 150px 0 50px;
  background: linear-gradient(135deg, rgba(255, 201, 92, 0.1) 0%, rgba(18, 18, 23, 1) 100%);
  border-bottom: 1px solid var(--border-color);
}
.content-section {
  padding: 60px 0;
  color: var(--text-secondary);
}
.content-section h1, .content-section h2, .content-section h3, 
.content-section h4, .content-section h5, .content-section h6 {
  color: var(--text-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.content-section h1 { font-size: 2.5rem; }
.content-section h2 { font-size: 2rem; border-bottom: 1px solid var(--border-color); padding-bottom: 0.5rem; }
.content-section h3 { font-size: 1.75rem; color: var(--accent-primary); }
.content-section h4 { font-size: 1.5rem; }
.content-section h5 { font-size: 1.25rem; }
.content-section h6 { font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; color: var(--accent-secondary); }

.content-section p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-section ul, .content-section ol {
  margin-bottom: 2rem;
  padding-left: 20px;
}

.content-section li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

/* Responsive Breakpoints */
@media (max-width: 1399px) {
    .container { max-width: 1140px; }
}

@media (max-width: 1199px) {
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2rem; }
}

@media (max-width: 991px) {
    .hero-section { padding-top: 120px; text-align: center; }
    .vertical-image { min-height: 350px; margin-bottom: 2rem; }
    .shadow-accent { box-shadow: none; border: 2px solid var(--border-accent); }
    .nav-cta { margin-top: 1rem; width: 100%; text-align: center; }
    .btn-accent{font-size: 18px;}
    .step-card{padding: 1.75rem;}
}

@media (max-width: 767px) {
    .hero-title { font-size: 1.75rem; }
    .hero-desc { font-size: 1rem; }
    .section-title { font-size: 1.5rem; }
    .glass-box { padding: 2rem !important; }
}

@media (max-width: 575px) {
    body{font-size: 14px;}
    .trust-card { border-left: none; border-top: 2px solid var(--border-color); padding-top: 10px; padding-bottom: 0;}
    .trust-card:hover { border-left-color: transparent; border-top-color: var(--accent); }
    .step-number { font-size: 3rem; }
    .info-card { padding: 1rem 0.5rem; font-size: 0.9rem; flex-direction: column; row-gap: 5px;}
    .hero-section { padding-top: 85px; }
    .btn-accent{font-size: 16px;}
    .section-desc{font-size: 0.9rem;}
    .step-card{padding: 1.5rem;}
    .step-card h4 {margin-top: 0.5rem;}
    .feature-bullet-list li{padding-left: 18px;}
    .feature-bullet-list li::before { width: 6px; height: 6px; }
}