/* CASINO SECURITY - DARK THEME REDESIGN */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #0a0e27;
    --darker-bg: #060818;
    --card-bg: #131729;
    --accent-blue: #00d4ff;
    --accent-cyan: #00ffff;
    --text-primary: #ffffff;
    --text-secondary: #a8b2d1;
    --success: #00ff88;
    --warning: #ffaa00;
    --danger: #ff4444;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ANIMATED BACKGROUND */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* HEADER */
.secure-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6, 8, 24, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.5px;
    position: relative;
}

.brand-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    transition: width 0.3s;
}

.brand-link:hover::after {
    width: 100%;
}

.shield-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
    50% { box-shadow: 0 0 30px rgba(0, 212, 255, 0.6); }
}

.brand-title {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-item {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
    padding: 8px 0;
}

.nav-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: width 0.3s;
}

.nav-item:hover {
    color: var(--accent-cyan);
}

.nav-item:hover::before {
    width: 100%;
}

.header-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.header-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.5s;
}

.header-btn:hover::before {
    left: 100%;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

/* HERO SECTION */
.hero-secure {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    text-align: center;
}

.hero-tag {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-h1 {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-desc {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
    animation: fadeIn 0.6s ease-out 0.4s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-box {
    padding: 30px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s;
    animation: fadeInUp 0.6s ease-out calc(0.6s + var(--delay)) backwards;
}

.feature-box:nth-child(1) { --delay: 0s; }
.feature-box:nth-child(2) { --delay: 0.1s; }
.feature-box:nth-child(3) { --delay: 0.2s; }

.feature-box:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.feature-num {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.feature-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* STATS SECTION */
.stats-section {
    position: relative;
    padding: 80px 40px;
    background: var(--darker-bg);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s;
}

.stat-item:hover {
    border-color: var(--accent-cyan);
    transform: scale(1.05);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
}

/* MAIN CONTAINER */
.main-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}

/* SIDEBAR */
.security-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-box {
    padding: 30px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s;
}

.sidebar-box:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.sidebar-box.highlight-box {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 255, 0.05));
    border: 1px solid var(--accent-cyan);
    position: relative;
    overflow: hidden;
}

.sidebar-box.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.sidebar-heading {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--accent-cyan);
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-list li {
    font-size: 14px;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.check-list li:hover {
    color: var(--text-primary);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 900;
    font-size: 18px;
}

/* CASINOS SECTION */
.casinos-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* CASINO CARD */
.secure-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s;
    overflow: hidden;
}

.secure-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s;
}

.secure-card:hover::before {
    left: 100%;
}

.secure-card:hover {
    border-color: var(--accent-cyan);
    transform: translateX(10px);
    box-shadow: -10px 10px 40px rgba(0, 212, 255, 0.3);
}

.security-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--success), #00cc66);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.secure-card-header {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-bottom: 30px;
}

.casino-logo-sec {
    width: 90px;
    height: 90px;
    background: var(--darker-bg);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.secure-card:hover .casino-logo-sec {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.casino-logo-sec img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.casino-info-sec {
    flex: 1;
}

.casino-title-sec {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.rating-sec {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 255, 255, 0.1));
    border: 1px solid var(--accent-cyan);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
}

.rating-value {
    font-size: 20px;
    color: var(--accent-cyan);
}

/* SECURITY INDICATORS */
.security-indicators {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.indicator {
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.indicator.green {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.indicator.blue {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--accent-blue);
    color: var(--accent-cyan);
}

.indicator:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px currentColor;
}

/* SECURITY STATS */
.security-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--darker-bg);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.stat-sec {
    display: grid;
    grid-template-columns: 140px 1fr 80px;
    align-items: center;
    gap: 15px;
}

.stat-label-sec {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.stat-bar {
    height: 12px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    border-radius: 10px;
    box-shadow: 0 0 10px var(--accent-cyan);
    position: relative;
    animation: fillBar 1s ease-out;
}

@keyframes fillBar {
    from { width: 0 !important; }
}

.stat-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.stat-value-sec {
    text-align: right;
    font-weight: 900;
    color: var(--accent-cyan);
    font-size: 16px;
}

/* ACTIONS */
.secure-actions {
    display: flex;
    gap: 15px;
}

.btn-secure {
    flex: 1;
    padding: 16px 30px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    border-radius: 10px;
    font-weight: 800;
    font-size: 15px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-secure::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-secure:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secure:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

.btn-details {
    flex: 1;
    padding: 16px 30px;
    background: transparent;
    border: 2px solid var(--accent-cyan);
    border-radius: 10px;
    font-weight: 800;
    font-size: 15px;
    text-align: center;
    color: var(--accent-cyan);
    transition: all 0.3s;
}

.btn-details:hover {
    background: var(--accent-cyan);
    color: var(--dark-bg);
    box-shadow: 0 0 20px var(--accent-cyan);
}

/* FOOTER */
.secure-footer {
    background: var(--darker-bg);
    padding: 60px 40px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.footer-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-col p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 12px;
    transition: all 0.3s;
    padding-left: 0;
}

.footer-col a:hover {
    color: var(--accent-cyan);
    padding-left: 10px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

.age-badge-footer {
    display: inline-block;
    padding: 8px 16px;
    background: var(--danger);
    border-radius: 8px;
    font-weight: 900;
    margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .main-container {
        grid-template-columns: 1fr;
    }
    
    .security-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-h1 {
        font-size: 42px;
    }
    
    .header-nav {
        display: none;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .secure-actions {
        flex-direction: column;
    }
    
    .footer-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
