/* SpinBronze - Metallic Theme CSS */
:root {
    --primary-bg: #1a1a1a;
    --secondary-bg: #2d2d2d;
    --accent-bronze: #cd7f32;
    --accent-gold: #ffd700;
    --accent-silver: #c0c0c0;
    --accent-copper: #b87333;
    --text-white: #ffffff;
    --text-light: #e8e8e8;
    --text-muted: #b8b8b8;
    --text-dim: #888888;
    --border-dark: #404040;
    --gradient-metallic: linear-gradient(45deg, #cd7f32, #ffd700, #c0c0c0, #b87333);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    --shadow-metallic: 0 0 25px rgba(205, 127, 50, 0.4);
    --shadow-luxury: 0 0 30px rgba(255, 215, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: var(--primary-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Metallic Background Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(205, 127, 50, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(192, 192, 192, 0.05) 0%, transparent 50%);
    z-index: -2;
    animation: metallicShine 25s ease-in-out infinite;
}

@keyframes metallicShine {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.03) rotate(1deg);
        opacity: 1;
    }
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-dark);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-metallic);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(205, 127, 50, 0.5);
    letter-spacing: 1px;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: -3px;
}

/* Navigation Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-line {
    width: 100%;
    height: 2px;
    background: var(--accent-bronze);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.nav-toggle.active .nav-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .nav-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation */
.site-navigation {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--secondary-bg);
    border-bottom: 1px solid var(--border-dark);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    padding: 1rem;
}

.site-navigation.open {
    transform: translateY(0);
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
    background: rgba(205, 127, 50, 0.15);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gradient-metallic);
    border-radius: 1px;
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
    
    .site-navigation {
        position: static;
        transform: none;
        background: transparent;
        border: none;
        padding: 0;
    }
    
    .nav-menu {
        flex-direction: row;
        gap: 1rem;
    }
    
    .header-container {
        padding: 1.5rem 2rem;
    }
}

/* Main Content */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 2rem 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.metallic-effects {
    position: absolute;
    width: 100%;
    height: 100%;
}

.metallic-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    animation: metallicFloat 20s ease-in-out infinite;
}

.metallic-layer-1 {
    background: linear-gradient(45deg, var(--accent-bronze), transparent);
    animation-delay: 0s;
}

.metallic-layer-2 {
    background: linear-gradient(45deg, var(--accent-gold), transparent);
    animation-delay: -7s;
}

.metallic-layer-3 {
    background: linear-gradient(45deg, var(--accent-silver), transparent);
    animation-delay: -14s;
}

@keyframes metallicFloat {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.1;
    }
    50% { 
        transform: scale(1.05) rotate(2deg);
        opacity: 0.2;
    }
}

.luxury-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: luxuryFloat 6s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent-gold);
}

.particle-1 { top: 20%; left: 20%; animation-delay: 0s; }
.particle-2 { top: 30%; right: 25%; animation-delay: 1.2s; }
.particle-3 { top: 60%; left: 15%; animation-delay: 2.4s; }
.particle-4 { top: 70%; right: 20%; animation-delay: 3.6s; }
.particle-5 { top: 40%; left: 50%; animation-delay: 4.8s; }

@keyframes luxuryFloat {
    0%, 100% { 
        opacity: 0.3; 
        transform: translateY(0) scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: translateY(-30px) scale(1.5); 
    }
}

.hero-content {
    z-index: 1;
}

.hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-metallic);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(205, 127, 50, 0.6);
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(45, 45, 45, 0.8);
    border: 1px solid var(--border-dark);
    border-radius: 25px;
    color: var(--text-light);
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.badge-icon {
    font-size: 1.2rem;
}

/* Game Section */
.game-section {
    margin: 4rem 0;
}

.section-container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--accent-bronze);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.section-description {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.game-container {
    background: var(--secondary-bg);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-metallic);
}

.game-frame-wrapper {
    margin-bottom: 1rem;
}

.game-display {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 15px;
    background: #000;
}

.game-info {
    text-align: center;
}

.game-tip {
    color: var(--text-dim);
    font-size: 0.9rem;
    font-style: italic;
}

/* Features Section */
.features-section {
    margin: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background: var(--secondary-bg);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(205, 127, 50, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury);
    border-color: var(--accent-gold);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--accent-silver);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.feature-text {
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 400;
}

/* Footer */
.site-footer {
    margin-top: 4rem;
    padding: 2rem 1.5rem;
    background: var(--secondary-bg);
    border-top: 1px solid var(--border-dark);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h4 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--accent-bronze);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links h5 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-list a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--accent-bronze);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-dark);
}

.footer-bottom p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .hero-badges {
        flex-direction: row;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-main {
        grid-template-columns: 2fr 1fr;
    }
    
    .footer-list {
        flex-direction: row;
        gap: 1rem;
    }
    
    .hero-heading {
        font-size: 6rem;
    }
}

/* Age Verification */
.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.age-verification-content {
    background: var(--secondary-bg);
    border: 1px solid var(--border-dark);
    border-radius: 25px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-luxury);
}

.age-verification-header {
    margin-bottom: 1.5rem;
}

.bronze-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.age-verification-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--accent-bronze);
    font-weight: 600;
}

.age-verification-body p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.age-question h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.age-warnings {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.warning-item {
    background: rgba(205, 127, 50, 0.15);
    border: 1px solid var(--accent-bronze);
    border-radius: 10px;
    padding: 0.5rem 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.age-verification-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0 1rem;
}

.bronze-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Source Sans Pro', sans-serif;
}

.bronze-btn-primary {
    background: var(--gradient-metallic);
    color: white;
}

.bronze-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-metallic);
}

.bronze-btn-secondary {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-dark);
}

.bronze-btn-secondary:hover {
    background: var(--border-dark);
    color: var(--text-white);
}

.age-verification-footer {
    margin-top: 1rem;
}

.age-verification-footer small {
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 480px) {
    .hero-heading {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .game-display {
        height: 400px;
    }
    
    .age-verification-content {
        padding: 2rem;
    }
    
    .age-verification-actions {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* Play Page Styles */
.play-section {
    margin: 2rem 0;
}

.play-header {
    text-align: center;
    margin-bottom: 2rem;
}

.play-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--accent-bronze);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.play-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.game-container-large {
    background: var(--secondary-bg);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-luxury);
    margin-bottom: 3rem;
}

.game-frame-wrapper-large {
    margin-bottom: 1rem;
}

.game-display-large {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 15px;
    background: #000;
}

.game-guide {
    margin-bottom: 3rem;
}

.guide-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.guide-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.guide-item {
    background: var(--secondary-bg);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.guide-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-metallic);
    border-color: var(--accent-silver);
}

.guide-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.guide-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--accent-bronze);
    margin-bottom: 1rem;
    font-weight: 600;
}

.guide-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

.game-notice {
    background: rgba(205, 127, 50, 0.15);
    border: 1px solid var(--accent-bronze);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.notice-header h4 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-bronze);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.notice-content ul {
    list-style: none;
    padding: 0;
}

.notice-list li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.notice-list li::before {
    content: '•';
    color: var(--accent-bronze);
    position: absolute;
    left: 0;
}

@media (min-width: 768px) {
    .guide-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .play-title {
        font-size: 3.8rem;
    }
}

/* Legal Pages Styles */
.legal-section {
    margin: 2rem 0;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--accent-bronze);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.legal-date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-card {
    margin-bottom: 2rem;
    background: var(--secondary-bg);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.legal-card:hover {
    box-shadow: var(--shadow-luxury);
    border-color: var(--accent-gold);
}

.legal-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legal-card ul {
    color: var(--text-muted);
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-card li {
    margin-bottom: 0.5rem;
}

.disclaimer-alert {
    background: rgba(255, 215, 0, 0.15);
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.disclaimer-alert h2 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-size: 2.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.warning-box {
    background: rgba(205, 127, 50, 0.15);
    border: 2px solid var(--accent-bronze);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.warning-box p {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.resource-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.resource-card {
    background: rgba(192, 192, 192, 0.15);
    border: 2px solid var(--accent-silver);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.resource-card h4 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-silver);
    margin-bottom: 1rem;
    font-weight: 600;
}

.resource-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.resource-btn {
    background: var(--gradient-metallic);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Source Sans Pro', sans-serif;
}

.resource-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-metallic);
}

@media (min-width: 768px) {
    .resource-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .legal-title {
        font-size: 3.8rem;
    }
}