/* Call Break - Spades Cards - Privacy Policy Premium Theme */

:root {
    /* Card Table Green & Gold Palette */
    --bg-dark: #02110a;
    --bg-felt: radial-gradient(circle at 50% 50%, #052b1b 0%, #01130a 100%);
    --bg-card: rgba(4, 25, 17, 0.88);
    --bg-card-hover: rgba(6, 38, 26, 0.95);
    
    --text-primary: #f0f7f3;
    --text-secondary: #c8dad0;
    --text-muted: #799587;
    
    --accent-gold: #dfc47c;
    --accent-gold-glow: rgba(223, 196, 124, 0.3);
    --accent-gold-dark: #8b743a;
    --accent-green-active: #2ecc71;
    --accent-brown-button: #592b1d;
    --accent-brown-hover: #733826;
    
    --gradient-gold: linear-gradient(135deg, #dfc47c 0%, #b89b53 50%, #dfc47c 100%);
    --gradient-green-button: linear-gradient(180deg, #2ecc71 0%, #1eaf64 100%);
    --gradient-brown-button: linear-gradient(180deg, #592b1d 0%, #3e1c12 100%);
    
    --border-gold: 1px solid rgba(223, 196, 124, 0.35);
    --border-gold-glow: 1px solid rgba(223, 196, 124, 0.7);
    
    --container-max: 960px;
    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-sm: 8px;
    
    --shadow-gold: 0 0 25px rgba(223, 196, 124, 0.15);
    --shadow-felt: inset 0 0 100px rgba(0, 0, 0, 0.8);
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    background-image: var(--bg-felt);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

/* Felt fabric overlay texture */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 0),
                      radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 0);
    background-size: 4px 4px;
    background-position: 0 0, 2px 2px;
    pointer-events: none;
    z-index: 1;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #032115;
    border: 2px solid var(--bg-dark);
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Structure */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Header */
header {
    width: 100%;
    height: 90px;
    border-bottom: 1px solid rgba(223, 196, 124, 0.15);
    background-color: rgba(2, 17, 10, 0.85);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-wrapper {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 15px rgba(223, 196, 124, 0.2);
    overflow: hidden;
    border: 1px solid rgba(223, 196, 124, 0.35);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.header-cta .btn {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 50px;
    color: #fff;
    background: var(--gradient-brown-button);
    border: var(--border-gold);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.header-cta .btn:hover {
    background: var(--gradient-gold);
    color: #02110a;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(223, 196, 124, 0.4);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 60px 0 30px;
    text-align: center;
}

.hero-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-gold);
    position: relative;
    animation: float 4s ease-in-out infinite;
    overflow: hidden;
    border: 2px solid var(--accent-gold);
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero h1 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 8px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 24px;
}

.badge-container {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(46, 204, 113, 0.08);
    color: var(--accent-green-active);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: 1px solid rgba(46, 204, 113, 0.3);
    line-height: 1;
    text-transform: uppercase;
}

.badge-update {
    border-color: rgba(223, 196, 124, 0.3);
    color: var(--accent-gold);
    background: rgba(223, 196, 124, 0.05);
}

/* Privacy policy main wrapper */
.policy-card {
    background-color: var(--bg-card);
    border: var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 48px;
    margin-bottom: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(223, 196, 124, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

/* Policy Content Details */
.policy-card h2 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 40px 0 16px;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.01em;
}

.policy-card h2::before {
    content: '♠';
    display: inline-block;
    color: var(--accent-gold);
    font-size: 1.4rem;
}

.policy-card h2:first-of-type {
    margin-top: 0;
}

.policy-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.policy-card p strong {
    color: var(--text-primary);
}

/* Highlight boxes */
.highlight-box {
    background: rgba(223, 196, 124, 0.05);
    border-left: 4px solid var(--accent-gold);
    padding: 22px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 28px 0;
    border-top: 1px solid rgba(223, 196, 124, 0.08);
    border-bottom: 1px solid rgba(223, 196, 124, 0.08);
    border-right: 1px solid rgba(223, 196, 124, 0.08);
}

.highlight-box p {
    margin-bottom: 0;
    color: var(--text-primary);
    font-weight: 500;
}

.highlight-box p strong {
    color: var(--accent-gold);
}

/* Lists */
.policy-card ul {
    list-style: none;
    margin-bottom: 24px;
    padding-left: 8px;
}

.policy-card li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.policy-card li::before {
    content: "♠"; /* Suit Spade Icon */
    position: absolute;
    left: 0;
    top: -2px;
    color: var(--accent-gold);
    font-size: 1.1rem;
}

/* Interactive section grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 32px 0;
}

.feature-item {
    background: rgba(223, 196, 124, 0.02);
    border: var(--border-gold);
    padding: 24px;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.feature-item:hover {
    background: var(--bg-card-hover);
    border-color: rgba(223, 196, 124, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(223, 196, 124, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(223, 196, 124, 0.1);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
    border: 1px solid rgba(223, 196, 124, 0.25);
}

.feature-item:nth-child(2n) .feature-icon {
    background: rgba(46, 204, 113, 0.1);
    color: var(--accent-green-active);
    border-color: rgba(46, 204, 113, 0.2);
}

.feature-item h3 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--accent-gold);
}

.feature-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* Footer styling */
footer {
    border-top: 1px solid rgba(223, 196, 124, 0.15);
    padding: 40px 0;
    background-color: #010c07;
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(223, 196, 124, 0.35);
}

.footer-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-logo-text {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
        box-shadow: var(--shadow-gold);
    }
    50% {
        transform: translateY(-8px);
        box-shadow: 0 10px 40px rgba(223, 196, 124, 0.3);
    }
    100% {
        transform: translateY(0px);
        box-shadow: var(--shadow-gold);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .policy-card {
        padding: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    header {
        height: 80px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }

    .badge-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}