/* SpinBlastor - Explosive Theme CSS */
:root {
    --primary-bg: #0d0d0d;
    --secondary-bg: #1a1a1a;
    --accent-orange: #ff6b35;
    --accent-red: #ff1744;
    --accent-yellow: #ffeb3b;
    --accent-blue: #2196f3;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --text-dim: #808080;
    --border-dark: #333333;
    --gradient-explosion: linear-gradient(45deg, #ff6b35, #ff1744, #ffeb3b, #2196f3);
    --gradient-dark: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    --shadow-explosion: 0 0 25px rgba(255, 107, 53, 0.4);
    --shadow-blast: 0 0 30px rgba(255, 23, 68, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--primary-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Explosive Background Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 23, 68, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 235, 59, 0.05) 0%, transparent 50%);
    z-index: -2;
    animation: explosivePulse 20s ease-in-out infinite;
}

@keyframes explosivePulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.05) rotate(2deg);
        opacity: 1;
    }
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 2px 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: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--gradient-explosion);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    letter-spacing: 1px;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: -3px;
}

/* Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.toggle-bar {
    width: 100%;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active .toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation */
.site-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--secondary-bg);
    border-bottom: 2px solid var(--border-dark);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    padding: 1rem;
}

.site-nav.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-gray);
    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(255, 107, 53, 0.15);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 3px;
    background: var(--gradient-explosion);
    border-radius: 2px;
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
    
    .site-nav {
        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-area {
    position: relative;
    min-height: 75vh;
    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;
}

.explosion-effects {
    position: absolute;
    width: 100%;
    height: 100%;
}

.explosion {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.1;
    animation: explosionBlast 15s ease-in-out infinite;
}

.explosion-1 {
    background: radial-gradient(circle, var(--accent-orange), transparent);
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.explosion-2 {
    background: radial-gradient(circle, var(--accent-red), transparent);
    top: 60%;
    right: 20%;
    animation-delay: -5s;
}

.explosion-3 {
    background: radial-gradient(circle, var(--accent-yellow), transparent);
    bottom: 20%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes explosionBlast {
    0%, 100% { 
        transform: scale(0.8);
        opacity: 0.1;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.2;
    }
}

.particle-field {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent-yellow);
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent-yellow);
}

.particle-1 { top: 15%; left: 25%; animation-delay: 0s; }
.particle-2 { top: 35%; right: 30%; animation-delay: 0.8s; }
.particle-3 { top: 65%; left: 20%; animation-delay: 1.6s; }
.particle-4 { top: 80%; right: 25%; animation-delay: 2.4s; }
.particle-5 { top: 45%; left: 60%; animation-delay: 3.2s; }

@keyframes particleFloat {
    0%, 100% { 
        opacity: 0.3; 
        transform: translateY(0) scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: translateY(-20px) scale(1.5); 
    }
}

.hero-content {
    z-index: 1;
}

.hero-heading {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-explosion);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(255, 107, 53, 0.6);
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-tags {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid var(--border-dark);
    border-radius: 30px;
    color: var(--text-gray);
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.tag-icon {
    font-size: 1.2rem;
}

/* Game Section */
.game-area {
    margin: 4rem 0;
}

.area-container {
    max-width: 1000px;
    margin: 0 auto;
}

.area-header {
    text-align: center;
    margin-bottom: 2rem;
}

.area-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.area-description {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.game-holder {
    background: var(--secondary-bg);
    border: 2px solid var(--border-dark);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-explosion);
}

.game-frame-wrapper {
    margin-bottom: 1rem;
}

.game-display {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 15px;
    background: #000;
}

.game-details {
    text-align: center;
}

.game-hint {
    color: var(--text-dim);
    font-size: 0.9rem;
    font-style: italic;
}

/* Features Section */
.features-area {
    margin: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-block {
    background: var(--secondary-bg);
    border: 2px solid var(--border-dark);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-block:hover::before {
    left: 100%;
}

.feature-block:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-blast);
    border-color: var(--accent-red);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.feature-text {
    color: var(--text-gray);
    line-height: 1.6;
    font-weight: 400;
}

/* Footer */
.site-footer {
    margin-top: 4rem;
    padding: 2rem 1.5rem;
    background: var(--secondary-bg);
    border-top: 2px 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: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-links h5 {
    font-family: 'Rajdhani', sans-serif;
    color: var(--accent-blue);
    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-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--accent-orange);
}

.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-tags {
        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: 5rem;
    }
}

/* Age Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.age-gate-content {
    background: var(--secondary-bg);
    border: 2px solid var(--border-dark);
    border-radius: 25px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-blast);
}

.age-gate-header {
    margin-bottom: 1.5rem;
}

.explosion-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.age-gate-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    color: var(--accent-orange);
    font-weight: 600;
}

.age-gate-body p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.age-question h3 {
    font-family: 'Rajdhani', sans-serif;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.age-warnings {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.warning-badge {
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid var(--accent-orange);
    border-radius: 10px;
    padding: 0.5rem 1rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.age-gate-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0 1rem;
}

.blast-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: 'Rajdhani', sans-serif;
}

.blast-btn-primary {
    background: var(--gradient-explosion);
    color: white;
}

.blast-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-explosion);
}

.blast-btn-secondary {
    background: transparent;
    color: var(--text-gray);
    border: 2px solid var(--border-dark);
}

.blast-btn-secondary:hover {
    background: var(--border-dark);
    color: var(--text-white);
}

.age-gate-footer {
    margin-top: 1rem;
}

.age-gate-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.1rem;
    }
    
    .game-display {
        height: 400px;
    }
    
    .age-gate-content {
        padding: 2rem;
    }
    
    .age-gate-actions {
        flex-direction: column;
    }
    
    .area-title {
        font-size: 2rem;
    }
}

/* Play Page Styles */
.play-area {
    margin: 2rem 0;
}

.play-header {
    text-align: center;
    margin-bottom: 2rem;
}

.play-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.play-subtitle {
    color: var(--text-gray);
    font-size: 1.2rem;
}

.game-holder-large {
    background: var(--secondary-bg);
    border: 2px solid var(--border-dark);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-blast);
    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: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    color: var(--accent-blue);
    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: 2px 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-explosion);
    border-color: var(--accent-red);
}

.guide-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.guide-item h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    font-weight: 600;
}

.guide-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.game-notice {
    background: rgba(255, 107, 53, 0.15);
    border: 2px solid var(--accent-orange);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.notice-header h4 {
    font-family: 'Rajdhani', sans-serif;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.notice-content ul {
    list-style: none;
    padding: 0;
}

.notice-list li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.notice-list li::before {
    content: '•';
    color: var(--accent-orange);
    position: absolute;
    left: 0;
}

@media (min-width: 768px) {
    .guide-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .play-title {
        font-size: 3.5rem;
    }
}

/* Legal Pages Styles */
.legal-area {
    margin: 2rem 0;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.legal-date {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-card {
    margin-bottom: 2rem;
    background: var(--secondary-bg);
    border: 2px solid var(--border-dark);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.legal-card:hover {
    box-shadow: var(--shadow-blast);
    border-color: var(--accent-blue);
}

.legal-card h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legal-card ul {
    color: var(--text-gray);
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-card li {
    margin-bottom: 0.5rem;
}

.disclaimer-alert {
    background: rgba(255, 23, 68, 0.15);
    border: 2px solid var(--accent-red);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.disclaimer-alert h2 {
    font-family: 'Rajdhani', sans-serif;
    color: var(--accent-red);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.warning-box {
    background: rgba(255, 107, 53, 0.15);
    border: 2px solid var(--accent-orange);
    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(33, 150, 243, 0.15);
    border: 2px solid var(--accent-blue);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.resource-card h4 {
    font-family: 'Rajdhani', sans-serif;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.resource-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.resource-btn {
    background: var(--gradient-explosion);
    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: 'Rajdhani', sans-serif;
}

.resource-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-explosion);
}

@media (min-width: 768px) {
    .resource-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .legal-title {
        font-size: 3.5rem;
    }
}