/* Gambling Theme Color Variables */
:root {
    --primary-gold: #FFD700;
    --rich-gold: #DAA520;
    --deep-gold: #B8860B;
    --casino-red: #DC143C;
    --royal-purple: #663399;
    --deep-purple: #4B0082;
    --emerald-green: #50C878;
    --casino-black: #1a1a1a;
    --rich-black: #0d0d0d;
    --silver: #C0C0C0;
    --platinum: #E5E4E2;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--rich-black);
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b69 50%, #1a1a1a 100%);
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(102, 51, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '🎰 🃏 🎲 💰 ♠ ♥ ♦ ♣';
    position: fixed;
    top: 50%;
    left: 50%;
    font-size: 8rem;
    color: rgba(255, 215, 0, 0.03);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
    animation: backgroundSymbols 20s linear infinite;
    white-space: nowrap;
    letter-spacing: 2rem;
}

@keyframes backgroundSymbols {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    animation: modalFadeIn 0.5s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(10px);
    }
}

.age-modal-content {
    background: linear-gradient(145deg, var(--casino-black), var(--deep-purple));
    border: 3px solid var(--primary-gold);
    border-radius: 25px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 215, 0, 0.3);
    animation: modalSlideIn 0.5s ease-out 0.2s both;
    position: relative;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.age-modal-header {
    background: linear-gradient(90deg, var(--casino-red), var(--deep-gold));
    padding: 2rem;
    text-align: center;
    border-radius: 22px 22px 0 0;
    position: relative;
    border-bottom: 2px solid var(--primary-gold);
}

.age-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    border-radius: 22px 22px 0 0;
    pointer-events: none;
}

.age-modal-header h2 {
    color: white;
    font-size: 1.8rem;
    margin: 0 0 1rem 0;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 215, 0, 0.3);
    font-weight: 900;
    position: relative;
    z-index: 2;
}


.age-modal-body {
    padding: 2.5rem;
    text-align: center;
}

.age-modal-body p {
    color: var(--platinum);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.age-modal-body p strong {
    color: var(--primary-gold);
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(255, 215, 0, 0.4);
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    justify-content: center;
}

.age-btn-yes,
.age-btn-no {
    padding: 1.5rem 0.8rem;
    border-radius: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    min-width: 160px;
    height: auto;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    line-height: 1.2;
    white-space: normal !important;
}

.age-btn-yes {
    background: linear-gradient(145deg, var(--emerald-green), var(--primary-gold));
    color: var(--casino-black);
    border-color: var(--emerald-green);
    box-shadow: 
        0 8px 20px rgba(80, 200, 120, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.age-btn-yes:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 30px rgba(80, 200, 120, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: var(--primary-gold);
}

.age-btn-no {
    background: linear-gradient(145deg, var(--casino-red), var(--deep-gold));
    color: white;
    border-color: var(--casino-red);
    box-shadow: 
        0 8px 20px rgba(220, 20, 60, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.age-btn-no:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 30px rgba(220, 20, 60, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: var(--primary-gold);
}

.age-btn-yes span,
.age-btn-no span {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1.2;
    font-weight: 700;
}

.age-btn-yes small,
.age-btn-no small {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    display: block;
    line-height: 1.1;
    margin-top: 0.2rem;
}

.age-disclaimer {
    margin-top: 2rem !important;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.age-disclaimer small {
    color: var(--silver) !important;
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    opacity: 0.8;
}

/* Responsive Age Modal */
@media (max-width: 768px) {
    .age-modal-content {
        max-width: 95%;
        margin: 1rem;
    }
    
    .age-modal-header {
        padding: 1.5rem;
    }
    
    .age-modal-header h2 {
        font-size: 1.5rem;
    }
    
    
    .age-modal-body {
        padding: 2rem 1.5rem;
    }
    
    .age-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .age-btn-yes,
    .age-btn-no {
        min-width: auto;
        width: 100%;
        min-height: 70px;
        padding: 1.2rem 0.6rem;
    }
    
    .age-btn-yes span,
    .age-btn-no span {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .age-btn-yes small,
    .age-btn-no small {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .age-modal-content {
        max-width: 95%;
        margin: 0.5rem;
    }
    
    .age-modal-header {
        padding: 1rem;
    }
    
    .age-modal-header h2 {
        font-size: 1.3rem;
    }
    
    .age-modal-body {
        padding: 1.5rem 1rem;
    }
    
    .age-modal-body p {
        font-size: 1rem;
    }
    
    .age-btn-yes,
    .age-btn-no {
        min-height: 65px;
        padding: 1rem 0.5rem;
    }
    
    .age-btn-yes span,
    .age-btn-no span {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .age-btn-yes small,
    .age-btn-no small {
        font-size: 0.65rem;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Georgia', serif;
    color: var(--platinum);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 3rem;
    color: var(--primary-gold);
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.6),
        0 4px 8px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-gold);
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 0.5),
        0 3px 6px rgba(0, 0, 0, 0.3);
}

h3 {
    font-size: 2rem;
    color: var(--rich-gold);
    text-shadow: 
        0 0 10px rgba(218, 165, 32, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.3);
}

p {
    margin-bottom: 1.5rem;
    color: var(--platinum);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.7;
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

a:hover {
    color: var(--rich-gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    transform: scale(1.05);
}

/* Casino-Style Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Arial Black', sans-serif;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-gold) 0%, var(--rich-gold) 25%, var(--casino-red) 50%, var(--deep-gold) 75%, var(--primary-gold) 100%);
    background-size: 400% 400%;
    color: var(--casino-black);
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.4),
        0 4px 15px rgba(220, 20, 60, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid var(--rich-gold);
    animation: gradientShift 3s ease infinite;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(255, 215, 0, 0.6),
        0 8px 25px rgba(220, 20, 60, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: var(--rich-black);
    border-color: var(--primary-gold);
    animation-duration: 1s;
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 
        0 5px 15px rgba(255, 215, 0, 0.5),
        0 2px 10px rgba(220, 20, 60, 0.3);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.3rem;
    border-radius: 15px;
    letter-spacing: 2px;
}

/* Responsible Gaming Banner */
.responsible-banner {
    position: relative;
    width: 100%;
    background: linear-gradient(90deg, var(--casino-red) 0%, var(--deep-gold) 50%, var(--casino-red) 100%);
    border-bottom: 1px solid var(--primary-gold);
    animation: bannerGlow 3s ease-in-out infinite alternate;
    box-shadow: 
        0 1px 5px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(220, 20, 60, 0.3);
}

@keyframes bannerGlow {
    0% { 
        box-shadow: 
            0 1px 5px rgba(0, 0, 0, 0.2),
            0 0 15px rgba(220, 20, 60, 0.3);
    }
    100% { 
        box-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.3),
            0 0 25px rgba(220, 20, 60, 0.5);
    }
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.banner-text {
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.5),
        0 0 8px rgba(255, 255, 255, 0.2);
    letter-spacing: 0.3px;
    font-family: 'Arial', sans-serif;
}

.banner-link {
    color: var(--primary-gold) !important;
    text-decoration: underline !important;
    font-weight: 800 !important;
    transition: all 0.3s ease !important;
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(255, 215, 0, 0.6) !important;
}

.banner-link:hover {
    color: var(--rich-gold) !important;
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(255, 215, 0, 0.9) !important;
    transform: none !important;
}

.banner-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    padding: 3px 6px;
    border-radius: 3px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.banner-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.banner-close:active {
    transform: translateY(-50%) scale(0.95);
}

/* Header contains the banner now */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 
        0 4px 25px rgba(255, 215, 0, 0.2),
        0 2px 15px rgba(0, 0, 0, 0.3);
}

.navbar {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 27, 105, 0.95) 50%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 215, 0, 0.1);
    padding: 1rem 0;
}

.contact-hero {
    padding: 220px 0 80px;
}

/* First content sections padding for pages without hero */
.legal-page-header,
.terms-header,
.privacy-header,
.cookie-header,
.disclaimer-header,
.responsible-header {
    padding-top: 220px;
}

/* Generic first section padding adjustment */
section:first-of-type:not(.hero):not(.contact-hero) {
    padding-top: 220px;
}

/* Legal pages first section */
.legal-page {
    padding-top: 220px;
}

/* Specific page adjustments */
.disclaimer-content,
.privacy-content, 
.cookie-content,
.terms-content {
    padding-top: 220px;
}

/* Legal pages specific styling */
.legal-hero {
    padding: 220px 0 80px;
    background: linear-gradient(135deg, var(--casino-black) 0%, var(--royal-purple) 35%, var(--casino-red) 65%, var(--deep-gold) 100%);
    background-size: 300% 300%;
    color: var(--primary-gold);
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: contactHeroShift 5s ease infinite;
}

.legal-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 
        0 0 30px rgba(255, 215, 0, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

/* Responsive Banner */
@media (max-width: 768px) {
    .banner-content {
        padding: 6px 15px;
    }
    
    .banner-text {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .banner-close {
        right: 10px;
        font-size: 1.2rem;
        padding: 2px 5px;
    }
    
    .hero {
        padding: 190px 0 80px;
    }
    
    .legal-hero {
        padding: 190px 0 60px;
    }
    
    section:first-of-type:not(.hero):not(.contact-hero) {
        padding-top: 190px;
    }
    
    .legal-page {
        padding-top: 190px;
    }
    
    .disclaimer-content,
    .privacy-content, 
    .cookie-content,
    .terms-content {
        padding-top: 190px;
    }
}

@media (max-width: 480px) {
    .banner-content {
        padding: 5px 10px;
    }
    
    .banner-text {
        font-size: 0.75rem;
        padding-right: 35px; /* Give space for close button */
    }
    
    .banner-close {
        right: 8px;
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 170px 0 60px;
    }
    
    .contact-hero {
        padding: 170px 0 50px;
    }
    
    .legal-hero {
        padding: 170px 0 50px;
    }
    
    section:first-of-type:not(.hero):not(.contact-hero) {
        padding-top: 170px;
    }
    
    .legal-page {
        padding-top: 170px;
    }
    
    .disclaimer-content,
    .privacy-content, 
    .cookie-content,
    .terms-content,
    .responsible-content {
        padding-top: 170px;
    }
}

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 27, 105, 0.95) 50%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 4px 25px rgba(255, 215, 0, 0.2),
        0 2px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold), var(--casino-red), var(--royal-purple));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    animation: logoGlow 2s ease-in-out infinite alternate;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    font-family: 'Georgia', serif;
    letter-spacing: 2px;
}

@keyframes logoGlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--platinum);
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--casino-red));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    transition: 0.3s;
    box-shadow: 0 1px 3px rgba(255, 215, 0, 0.5);
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(135deg, var(--casino-black) 0%, var(--deep-purple) 25%, var(--casino-red) 50%, var(--royal-purple) 75%, var(--casino-black) 100%),
        radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    background-size: 400% 400%, 100% 100%;
    color: var(--primary-gold);
    padding: 220px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: heroGradient 6s ease infinite;
}

@keyframes heroGradient {
    0%, 100% { background-position: 0% 50%, center; }
    50% { background-position: 100% 50%, center; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 20, 60, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(102, 51, 153, 0.15) 0%, transparent 50%);
    opacity: 1;
    animation: floatingOrbs 8s ease-in-out infinite;
}

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

.hero::after {
    content: '♠ ♥ ♦ ♣';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: rgba(255, 215, 0, 0.3);
    animation: cardSuits 3s ease-in-out infinite;
}

@keyframes cardSuits {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out, titleGlow 3s ease-in-out infinite alternate;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.8),
        0 0 40px rgba(255, 215, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.3);
    font-weight: 900;
    letter-spacing: 2px;
    font-family: 'Georgia', serif;
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.4), 0 4px 8px rgba(0, 0, 0, 0.3); }
    100% { text-shadow: 0 0 30px rgba(255, 215, 0, 1), 0 0 60px rgba(255, 215, 0, 0.6), 0 4px 8px rgba(0, 0, 0, 0.3); }
}

/* Contact Hero */
.contact-hero {
    background: 
        linear-gradient(135deg, var(--casino-black) 0%, var(--royal-purple) 35%, var(--casino-red) 65%, var(--deep-gold) 100%),
        radial-gradient(ellipse at top, rgba(255, 215, 0, 0.2) 0%, transparent 50%);
    background-size: 300% 300%, 100% 100%;
    color: var(--primary-gold);
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: contactHeroShift 5s ease infinite;
}

@keyframes contactHeroShift {
    0%, 100% { background-position: 0% 50%, center; }
    50% { background-position: 100% 50%, center; }
}

.contact-hero::before {
    content: '🎰 🃏 🎲 💰';
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 1.8rem;
    opacity: 0.4;
    animation: casinoIcons 4s ease-in-out infinite;
}

@keyframes casinoIcons {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.4; }
    50% { transform: rotate(10deg) scale(1.1); opacity: 0.6; }
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.section-alt {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(45, 27, 105, 0.8) 50%, rgba(26, 26, 26, 0.8) 100%);
    position: relative;
}

.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(220, 20, 60, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--primary-gold);
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.6),
        0 4px 8px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    letter-spacing: 2px;
    animation: sectionTitleGlow 4s ease-in-out infinite alternate;
    font-family: 'Georgia', serif;
}

@keyframes sectionTitleGlow {
    0% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 4px 8px rgba(0, 0, 0, 0.3); }
    100% { text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 50px rgba(255, 215, 0, 0.4), 0 4px 8px rgba(0, 0, 0, 0.3); }
}

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

.step-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(45, 27, 105, 0.95));
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 215, 0, 0.3);
    color: var(--platinum);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 10px 25px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 215, 0, 0.2);
    border-color: var(--primary-gold);
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--casino-red), var(--deep-gold));
    background-size: 200% 200%;
    color: var(--casino-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 1rem;
    box-shadow: 
        0 8px 20px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 3px solid var(--rich-gold);
    animation: numberPulse 3s ease-in-out infinite;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes numberPulse {
    0%, 100% { background-position: 0% 50%; transform: scale(1); }
    50% { background-position: 100% 50%; transform: scale(1.05); }
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(80, 200, 120, 0.1));
    border-radius: 15px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        0 3px 10px rgba(80, 200, 120, 0.3),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
    color: var(--emerald-green);
    font-weight: 600;
    border: 1px solid rgba(80, 200, 120, 0.3);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(80, 200, 120, 0.4),
        inset 0 1px 0 rgba(255, 215, 0, 0.2);
    border-color: var(--emerald-green);
}

/* Strategies Grid */
.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.strategy-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(102, 51, 153, 0.9));
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(220, 20, 60, 0.2),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid rgba(220, 20, 60, 0.3);
    color: var(--platinum);
    position: relative;
}

.strategy-card::after {
    content: '♠';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 10px 25px rgba(220, 20, 60, 0.4),
        inset 0 1px 0 rgba(255, 215, 0, 0.2);
    border-color: var(--casino-red);
}

.strategy-card:hover::after {
    color: var(--primary-gold);
    transform: rotate(15deg) scale(1.2);
}

/* Newsletter Section */
.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #007bff;
}

.newsletter-message {
    margin-top: 1rem;
    padding: 1rem;
    background: #d4edda;
    color: #155724;
    border-radius: 6px;
    font-weight: 500;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(75, 0, 130, 0.9));
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    color: var(--platinum);
    position: relative;
    transition: all 0.4s ease;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(255, 215, 0, 0.3);
    font-family: 'Georgia', serif;
}

.review-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 8px 20px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 215, 0, 0.2);
    border-color: var(--primary-gold);
}

.stars {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    animation: starTwinkle 2s ease-in-out infinite alternate;
}

@keyframes starTwinkle {
    0% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.6); }
    100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.9), 0 0 30px rgba(255, 215, 0, 0.4); }
}

.reviewer {
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-style: italic;
    margin-top: 1rem;
}

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

.faq-item {
    background: linear-gradient(145deg, var(--casino-black), var(--deep-purple));
    color: #fff;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.faq-question {
    background: linear-gradient(145deg, var(--casino-black), var(--deep-purple));
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(145deg, var(--casino-black), var(--deep-purple));
}

.faq-answer {
    padding: 1.5rem;
    color: #fff;
    border-top: 1px solid #eee;
}

/* Responsible Gambling Section */
.responsible-gambling {
    background: #dc3545;
    color: white;
    text-align: center;
}

.responsible-gambling .section-title {
    color: white;
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.help-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.resource {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.resource a {
    color: #fff;
    text-decoration: underline;
}

/* Contact Form */
.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 27, 105, 0.9) 50%, rgba(26, 26, 26, 0.9) 100%);
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 20, 60, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #331b4f;
    color: white;
    border-radius: 8px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-container {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(75, 0, 130, 0.95));
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 8px 25px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.4);
    position: relative;
}

.form-container::before {
    content: '🎰';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.3;
}

.contact-form h3 {
    margin-bottom: 2rem;
    color: var(--primary-gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--platinum);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(26, 26, 26, 0.8);
    color: var(--platinum);
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 
        inset 0 2px 5px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 215, 0, 0.3);
    transform: scale(1.02);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(192, 192, 192, 0.7);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.form-message {
    margin-top: 2rem;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

/* Responsible Notice */
.responsible-notice {
    background: #dc3545;
    border: 1px solid #ffeaa7;
    padding: 2rem 0;
    text-align: center;
}

.notice-content {
    color: #856404;
}

/* Legal Pages */
.legal-page {
    padding: 150px 0 80px;
}

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

.legal-content h1 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.legal-content h2 {
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: #fff;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #fff;
}

.contact-info {
    background: #331b4f;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.important-notice {
    background: #331b4f;
    border: 2px solid #ffeaa7;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

/* Responsible Gaming Page Specific */
.responsible-gaming-page .lead-message {
    font-size: 1.5rem;
    color: #dc3545;
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8d7da;
    border-radius: 8px;
}

.warning-signs {
    background: #712328;
    border: 2px solid #f5c6cb;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tip-card {
    background: #d1ecf1;
    border: 2px solid #bee5eb;
    padding: 1.5rem;
    border-radius: 8px;
}

.resource-card {
    background: #331b4f;
    border: 2px solid #007bff;
    padding: 2rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.additional-support {
    background: #331b4f;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.commitment-statement {
    background: #246736;
    border: 2px solid #c3e6cb;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.emergency-help {
    background: #dc3545;
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--casino-black) 0%, var(--deep-purple) 50%, var(--casino-black) 100%);
    color: var(--platinum);
    padding: 4rem 0 2rem;
    position: relative;
    border-top: 3px solid var(--primary-gold);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(220, 20, 60, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

/* Footer Logo Styling */
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 15px;
    border: 3px solid rgba(255, 215, 0, 0.4);
    padding: 10px;
    background: rgba(26, 26, 26, 0.5);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.footer-logo-img:hover {
    border-color: var(--primary-gold);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-logo h3 {
    margin-bottom: 0;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--platinum);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
    transform: translateX(5px);
}

.footer-section ul li a:hover::after {
    width: 100%;
}

.footer-disclaimer {
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--platinum);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    background: rgba(26, 26, 26, 0.5);
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 15px;
    position: relative;
}

.footer-disclaimer::before {
    content: '⚠';
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1.5rem;
    color: rgba(255, 215, 0, 0.6);
}

/* Responsible Gambling Logos */
.responsible-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    flex-wrap: wrap;
}

.logo-item {
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-3px);
}

.responsible-logo {
    height: 120px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.responsible-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.logo-item a {
    display: block;
    text-decoration: none;
}

.logo-item a:hover {
    text-shadow: none;
    transform: none;
}

/* Footer Copyright */
.footer-copyright {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    background: rgba(0, 0, 0, 0.2);
}

.footer-copyright p {
    color: var(--platinum);
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional Casino-themed Animations */
@keyframes diceRoll {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(90deg); }
    50% { transform: rotate(180deg); }
    75% { transform: rotate(270deg); }
    100% { transform: rotate(360deg); }
}

@keyframes chipStack {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(2deg); }
}

@keyframes jackpotGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.4),
                    0 0 40px rgba(255, 215, 0, 0.2),
                    0 0 60px rgba(255, 215, 0, 0.1); 
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.8),
                    0 0 60px rgba(255, 215, 0, 0.4),
                    0 0 90px rgba(255, 215, 0, 0.2); 
    }
}

/* Floating Casino Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-elements::before,
.floating-elements::after {
    content: '♠ ♥ ♦ ♣';
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 215, 0, 0.1);
    animation: float 15s ease-in-out infinite;
}

.floating-elements::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-elements::after {
    top: 70%;
    right: 15%;
    animation-delay: 7s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.3;
    }
}

/* New Sections Styling */

/* Live Jackpots Section */
.jackpots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.jackpot-card {
    background: linear-gradient(145deg, var(--casino-black), var(--deep-purple));
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 3px solid var(--primary-gold);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 5px 20px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: jackpotGlow 3s ease-in-out infinite alternate;
    transition: all 0.4s ease;
}

.jackpot-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(255, 215, 0, 0.5),
        inset 0 1px 0 rgba(255, 215, 0, 0.3);
}

.jackpot-card::before {
    content: '🎰';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    opacity: 0.3;
    animation: diceRoll 6s linear infinite;
}

.jackpot-game {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--platinum);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.jackpot-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-gold);
    text-shadow: 
        0 0 30px rgba(255, 215, 0, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

.jackpot-draw {
    color: var(--platinum);
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hot & Cold Numbers Section */
.numbers-analysis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.numbers-section {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(75, 0, 130, 0.9));
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(255, 215, 0, 0.2);
    transition: all 0.4s ease;
}

.numbers-section:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.4),
        0 8px 20px rgba(255, 215, 0, 0.4);
}

.numbers-description {
    color: var(--platinum);
    margin-bottom: 2rem;
    font-style: italic;
}

.numbers-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.number-ball {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--casino-black);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.number-ball.hot {
    background: linear-gradient(135deg, var(--casino-red), var(--primary-gold));
    box-shadow: 
        0 5px 15px rgba(220, 20, 60, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.number-ball.cold {
    background: linear-gradient(135deg, var(--silver), var(--platinum));
    box-shadow: 
        0 5px 15px rgba(192, 192, 192, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.number-ball:hover {
    transform: scale(1.1) rotate(15deg);
    border-color: var(--primary-gold);
}

.disclaimer-text {
    text-align: center;
    color: var(--platinum);
    font-style: italic;
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* Winner Stories Section */
.winners-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.winner-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(218, 165, 32, 0.1));
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.winner-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 10px 25px rgba(255, 215, 0, 0.5);
}

.winner-avatar {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    animation: chipStack 3s ease-in-out infinite;
}

.winner-info h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.winner-prize {
    font-size: 2rem;
    font-weight: 900;
    color: var(--casino-red);
    text-shadow: 0 0 15px rgba(220, 20, 60, 0.6);
    margin-bottom: 1rem;
    text-align: center;
}

.winner-quote {
    font-style: italic;
    color: var(--platinum);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.winner-date {
    color: var(--rich-gold);
    font-weight: 600;
    text-align: right;
}

/* Security & Trust Section */
.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.security-item {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(80, 200, 120, 0.1));
    padding: 2.5rem;
    border-radius: 18px;
    text-align: center;
    border: 2px solid rgba(80, 200, 120, 0.3);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(80, 200, 120, 0.2);
    transition: all 0.4s ease;
}

.security-item:hover {
    transform: translateY(-5px);
    border-color: var(--emerald-green);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.4),
        0 8px 20px rgba(80, 200, 120, 0.4);
}

.security-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.security-item h3 {
    color: var(--emerald-green);
    margin-bottom: 1rem;
}

/* Mobile App Section */
.app-promotion {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.app-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--platinum);
    font-weight: 600;
}

.feature-icon {
    font-size: 1.5rem;
}

.app-download {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(145deg, var(--casino-black), var(--deep-purple));
    border: 2px solid var(--primary-gold);
    border-radius: 12px;
    color: var(--platinum);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.app-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-color: var(--rich-gold);
}

.store-icon {
    font-size: 2rem;
}

.store-text {
    font-size: 0.8rem;
    opacity: 0.8;
}

.store-name {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Phone Mockup */
.phone-frame {
    width: 250px;
    height: 500px;
    background: linear-gradient(145deg, var(--casino-black), var(--deep-purple));
    border-radius: 30px;
    padding: 20px;
    border: 3px solid var(--primary-gold);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 8px 25px rgba(255, 215, 0, 0.3);
    margin: 0 auto;
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--casino-black), var(--royal-purple));
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app-interface {
    text-align: center;
}

.app-header {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.app-jackpot {
    color: var(--casino-red);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.6);
}

.app-numbers {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.app-number {
    width: 30px;
    height: 30px;
    background: var(--primary-gold);
    color: var(--casino-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.9rem;
}

.app-play-btn {
    background: var(--casino-red);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: jackpotGlow 2s ease-in-out infinite alternate;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .app-promotion {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .app-features {
        grid-template-columns: 1fr;
    }
    
    .app-download {
        flex-direction: column;
    }
    
    .jackpot-amount {
        font-size: 2rem;
    }
    
    .numbers-analysis {
        grid-template-columns: 1fr;
    }
    
    .phone-frame {
        width: 200px;
        height: 400px;
    }
}

/* Rich Styling for New Inner Pages */

/* Enhanced Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes shine {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.6); }
}

/* Hero Sections for New Pages */
.how-to-play-hero, .about-hero, .strategies-hero {
    background: linear-gradient(135deg, 
        var(--royal-purple) 0%, 
        var(--deep-purple) 25%, 
        var(--casino-red) 50%, 
        var(--deep-gold) 75%, 
        var(--primary-gold) 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.how-to-play-hero::before, .about-hero::before, .strategies-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.how-to-play-hero .hero-content, .about-hero .hero-content, .strategies-hero .hero-content {
    position: relative;
    z-index: 2;
}

.how-to-play-hero h1, .about-hero h1, .strategies-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--platinum);
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Enhanced Content Sections */
.content-section {
    padding: 80px 0;
    position: relative;
}

.content-section.bg-secondary {
    background: linear-gradient(135deg, 
        rgba(102, 51, 153, 0.1) 0%, 
        rgba(220, 20, 60, 0.1) 50%, 
        rgba(255, 215, 0, 0.1) 100%);
}

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

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--casino-red), var(--primary-gold), var(--casino-red));
    background-size: 200% 100%;
    border-radius: 2px;
    animation: shine 2s linear infinite;
}

.section-header h2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent);
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--platinum);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Steps Grid for How to Play */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    background: linear-gradient(145deg, var(--casino-black), #2a2a2a);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-gold), var(--casino-red), var(--royal-purple));
    border-radius: 20px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.step-number {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--deep-gold));
    color: var(--casino-black);
    font-size: 2.5rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    animation: float 3s ease-in-out infinite;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg, var(--primary-gold), var(--casino-red), var(--royal-purple), var(--emerald-green));
    border-radius: 50%;
    z-index: -1;
    animation: glow 2s ease-in-out infinite;
}

.step-card h3 {
    font-size: 1.6rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.step-card p {
    color: var(--platinum);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Game Types for How to Play */
.game-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.game-card {
    background: linear-gradient(145deg, var(--casino-black), #2a2a2a);
    border-radius: 20px;
    padding: 40px;
    border-left: 5px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent);
    border-radius: 50%;
}

.game-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.game-card h3 {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-weight: 700;
}

.game-card p {
    color: var(--platinum);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.game-card ul {
    list-style: none;
    padding: 0;
}

.game-card ul li {
    color: var(--silver);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
}

.game-card ul li::before {
    content: '♦';
    position: absolute;
    left: 0;
    color: var(--casino-red);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Tips and Features Grids */
.tips-grid, .features-grid, .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tip-card, .feature-card, .info-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(42, 42, 42, 0.9));
    border-radius: 15px;
    padding: 35px 25px;
    border-top: 4px solid var(--primary-gold);
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.tip-card:hover, .feature-card:hover, .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.15);
}

.tip-card h4, .feature-card h4, .info-card h4 {
    font-size: 1.4rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.tip-card p, .feature-card p, .info-card p {
    color: var(--platinum);
    line-height: 1.6;
    font-size: 1rem;
}

/* Values Grid for About Page */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: linear-gradient(145deg, var(--casino-black), #2a2a2a);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-gold), var(--casino-red), var(--emerald-green));
    border-radius: 20px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.value-card h3 {
    font-size: 1.6rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-weight: 600;
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.achievement-card {
    background: linear-gradient(145deg, var(--casino-black), #2a2a2a);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    border: 3px solid var(--primary-gold);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.achievement-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.achievement-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
    display: block;
}

.achievement-card h4 {
    font-size: 1.4rem;
    color: var(--casino-red);
    margin-bottom: 10px;
    font-weight: 600;
}

/* Number Analysis for Strategies */
.numbers-analysis {
    margin-top: 60px;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.analysis-card {
    background: linear-gradient(145deg, var(--casino-black), #2a2a2a);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    border: 3px solid transparent;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.analysis-card.hot-numbers {
    border-color: var(--casino-red);
    background: linear-gradient(145deg, rgba(220, 20, 60, 0.1), rgba(26, 26, 26, 0.95));
}

.analysis-card.cold-numbers {
    border-color: #4A90E2;
    background: linear-gradient(145deg, rgba(74, 144, 226, 0.1), rgba(26, 26, 26, 0.95));
}

.analysis-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.analysis-card.hot-numbers h3 {
    color: var(--casino-red);
}

.analysis-card.cold-numbers h3 {
    color: #4A90E2;
}

.analysis-desc {
    color: var(--platinum);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.numbers-display {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.number.hot {
    background: linear-gradient(135deg, var(--casino-red), #FF4500);
}

.number.cold {
    background: linear-gradient(135deg, #4A90E2, #1E90FF);
}

.number:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.analysis-note {
    color: var(--silver);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 20px;
}

/* Strategy Cards */
.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.strategy-card {
    background: linear-gradient(145deg, var(--casino-black), #2a2a2a);
    border-radius: 20px;
    padding: 40px;
    border-left: 5px solid var(--primary-gold);
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.strategy-card:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.strategy-card h4 {
    font-size: 1.6rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.strategy-pros-cons {
    margin-top: 20px;
}

.pros, .cons {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.pros strong {
    color: var(--emerald-green);
}

.cons strong {
    color: var(--casino-red);
}

/* Advanced Techniques */
.advanced-techniques {
    margin-top: 60px;
}

.technique-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(42, 42, 42, 0.95));
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    border-top: 4px solid var(--primary-gold);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.technique-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.15);
}

.technique-details {
    margin-top: 20px;
}

.technique-details ul {
    list-style: none;
    padding: 0;
}

.technique-details ul li {
    color: var(--platinum);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.technique-details ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-size: 0.8rem;
}

/* Reminder Cards */
.reminders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.reminder-card {
    background: linear-gradient(145deg, rgba(220, 20, 60, 0.1), rgba(26, 26, 26, 0.95));
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    border: 2px solid var(--casino-red);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.reminder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(220, 20, 60, 0.2);
}

.reminder-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.reminder-card h4 {
    color: var(--casino-red);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Help Information */
.help-info {
    text-align: center;
    margin-top: 40px;
}

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

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

.contact-card {
    background: linear-gradient(145deg, var(--emerald-green), #3CB371);
    color: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(80, 200, 120, 0.3);
}

.contact-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-card a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 960px) {
    .container {
        padding: 0 15px;
    }
    
    /* Mobile Responsive for New Pages */
    .how-to-play-hero h1, .about-hero h1, .strategies-hero h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .steps-grid, .game-types, .values-grid, .achievements-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
    }
    
    .numbers-display {
        gap: 10px;
    }
    
    .number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .strategies-grid, .advanced-techniques {
        grid-template-columns: 1fr;
    }
    
    .value-icon {
        font-size: 2.5rem;
    }
    
    .achievement-number {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .steps-grid,
    .strategies-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-logo {
        justify-content: center;
        text-align: center;
    }
    
    .responsible-logos {
        gap: 1rem;
        padding: 1rem;
    }
    
    .responsible-logo {
        height: 80px;
        max-width: 140px;
    }
    
    .footer-logo-img {
        width: 80px;
        height: 80px;
    }
    
    .responsible-logos {
        gap: 1rem;
        padding: 1rem;
        justify-content: center;
    }
    
    .responsible-logo {
        height: 60px;
        max-width: 120px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .help-resources {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 180px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

/* Focus and Accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border: 2px solid #fff;
    }
    
    .btn-primary:hover {
        background: #fff;
        color: #000;
    }
}