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

:root {
    /* Slot Game Color Palette - Jewel Tones */
    --ruby-red: #d63384;
    --ruby-dark: #b02a5c;
    --ruby-light: #ff4081;
    --emerald-green: #20c997;
    --emerald-dark: #0f5132;
    --emerald-light: #40e0d0;
    --sapphire-blue: #0d6efd;
    --sapphire-dark: #0a58ca;
    --sapphire-light: #6495ed;
    --golden-yellow: #ffd700;
    --golden-dark: #b8860b;
    --golden-light: #ffff8f;
    --amethyst-purple: #8a2be2;
    --amethyst-dark: #4b0082;
    --amethyst-light: #9370db;
    --diamond-white: #f8f9fa;
    --diamond-silver: #e9ecef;
    
    /* Background Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a2e;
    --bg-tertiary: #16213e;
    --bg-card: linear-gradient(145deg, #1e1e30, #2d2d44);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #e9ecef;
    --text-muted: #adb5bd;
    
    /* Fonts */
    --font-primary: 'Orbitron', monospace;
    --font-secondary: 'Roboto', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Shadows and Glows */
    --glow-ruby: 0 0 20px rgba(214, 51, 132, 0.5);
    --glow-emerald: 0 0 20px rgba(32, 201, 151, 0.5);
    --glow-sapphire: 0 0 20px rgba(13, 110, 253, 0.5);
    --glow-golden: 0 0 20px rgba(255, 215, 0, 0.5);
    --glow-amethyst: 0 0 20px rgba(138, 43, 226, 0.5);
}

body {
    font-family: var(--font-secondary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Age Gate Modal */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--bg-secondary), var(--bg-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.age-gate-overlay.active {
    opacity: 1;
    visibility: visible;
}

.age-gate-container {
    position: relative;
    z-index: 10001;
}

.age-gate-content {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 400px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.age-gate-content::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--ruby-red), var(--emerald-green), var(--sapphire-blue), var(--golden-yellow));
    border-radius: 22px;
    z-index: -1;
}

.slot-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--golden-yellow), var(--golden-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    box-shadow: var(--glow-golden);
}

.circle-glow {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--ruby-red), var(--emerald-green), var(--sapphire-blue), var(--golden-yellow));
    z-index: -1;
    opacity: 0.7;
}

.age-text {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--bg-primary);
}

.slot-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--ruby-red), var(--golden-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.age-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.slot-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.slot-btn.confirm {
    background: linear-gradient(45deg, var(--emerald-green), var(--emerald-light));
    color: white;
    box-shadow: var(--glow-emerald);
}

.slot-btn.deny {
    background: linear-gradient(45deg, var(--ruby-red), var(--ruby-light));
    color: white;
    box-shadow: var(--glow-ruby);
}

.slot-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.btn-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.btn-sparkles::before,
.btn-sparkles::after {
    content: '✨';
    position: absolute;
}

.btn-sparkles::before {
    top: 20%;
    left: 20%;
}

.btn-sparkles::after {
    bottom: 20%;
    right: 20%;
}

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

.main-content {
    transition: opacity 0.5s ease;
}

.main-content.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--ruby-red), var(--emerald-green), var(--sapphire-blue)) 1;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gem-icon {
    width: 40px;
    height: 40px;
    position: relative;
    transform: rotate(45deg);
    background: linear-gradient(45deg, var(--ruby-red), var(--golden-yellow));
    border-radius: 8px;
    box-shadow: var(--glow-golden);
}

.gem-facet {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
}

.gem-facet:nth-child(1) {
    top: 2px;
    left: 2px;
    right: 2px;
    height: 8px;
    border-radius: 4px 4px 0 0;
}

.gem-facet:nth-child(2) {
    bottom: 2px;
    left: 2px;
    right: 2px;
    height: 8px;
    border-radius: 0 0 4px 4px;
}

.gem-facet:nth-child(3) {
    top: 12px;
    left: 2px;
    right: 2px;
    bottom: 12px;
    border-radius: 2px;
}

.gem-shine {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(45deg, var(--golden-yellow), var(--golden-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-item {
    font-family: var(--font-primary);
    font-weight: 600;
    text-decoration: none;
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item:hover {
    background: linear-gradient(45deg, var(--ruby-red), var(--sapphire-blue));
    box-shadow: 0 0 20px rgba(214, 51, 132, 0.3);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--golden-yellow);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at center, var(--bg-secondary), var(--bg-primary));
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slot-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, var(--ruby-red) 2px, transparent 2px),
        radial-gradient(circle at 40% 20%, var(--emerald-green) 2px, transparent 2px),
        radial-gradient(circle at 60% 70%, var(--sapphire-blue) 2px, transparent 2px),
        radial-gradient(circle at 80% 30%, var(--golden-yellow) 2px, transparent 2px);
    background-size: 100px 100px, 150px 150px, 200px 200px, 120px 120px;
    opacity: 0.3;
}

.floating-gems {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-gem {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.gem-ruby {
    background: linear-gradient(45deg, var(--ruby-red), var(--ruby-light));
    top: 20%;
    left: 10%;
    box-shadow: var(--glow-ruby);
}

.gem-emerald {
    background: linear-gradient(45deg, var(--emerald-green), var(--emerald-light));
    top: 30%;
    right: 15%;
    box-shadow: var(--glow-emerald);
}

.gem-sapphire {
    background: linear-gradient(45deg, var(--sapphire-blue), var(--sapphire-light));
    top: 60%;
    left: 20%;
    box-shadow: var(--glow-sapphire);
}

.gem-diamond {
    background: linear-gradient(45deg, var(--diamond-white), var(--diamond-silver));
    top: 70%;
    right: 25%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.gem-amethyst {
    background: linear-gradient(45deg, var(--amethyst-purple), var(--amethyst-light));
    top: 40%;
    left: 50%;
    box-shadow: var(--glow-amethyst);
}

.gem-topaz {
    background: linear-gradient(45deg, var(--golden-yellow), var(--golden-light));
    top: 80%;
    left: 40%;
    box-shadow: var(--glow-golden);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text {
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 2rem;
    text-align: center;
}

.title-line {
    display: block;
    margin-bottom: 0.5rem;
}

.slot-gradient {
    background: linear-gradient(45deg, var(--ruby-red), var(--golden-yellow), var(--emerald-green), var(--sapphire-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.slot-cta-button {
    background: linear-gradient(45deg, var(--ruby-red), var(--golden-yellow));
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 15px;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--glow-golden);
}

.slot-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
}

.btn-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--ruby-red), var(--emerald-green), var(--sapphire-blue), var(--golden-yellow));
    border-radius: 17px;
    z-index: -1;
}

.btn-gems {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.btn-gem {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

.btn-gem:nth-child(1) {
    top: 20%;
    left: 20%;
}

.btn-gem:nth-child(2) {
    top: 30%;
    right: 25%;
}

.btn-gem:nth-child(3) {
    bottom: 25%;
    left: 50%;
}

/* Overview Section */
.overview {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.slot-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid transparent;
    background-clip: padding-box;
}

.slot-image-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--ruby-red), var(--emerald-green), var(--sapphire-blue), var(--golden-yellow));
    border-radius: 22px;
    z-index: -1;
}

.slot-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(214, 51, 132, 0.1), transparent);
    pointer-events: none;
}

.overlay-gems {
    position: absolute;
    inset: 0;
}

.overlay-gem {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.overlay-gem:nth-child(1) {
    background: var(--ruby-red);
    top: 20%;
    left: 20%;
}

.overlay-gem:nth-child(2) {
    background: var(--emerald-green);
    top: 60%;
    right: 30%;
}

.overlay-gem:nth-child(3) {
    background: var(--sapphire-blue);
    bottom: 30%;
    left: 50%;
}

.overview-content {
    padding: 2rem;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--golden-yellow), var(--ruby-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Features Section */
.features {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-primary);
}

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

.slot-feature-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ruby-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--ruby-red), var(--ruby-light));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.emerald-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--emerald-green), var(--emerald-light));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sapphire-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--sapphire-blue), var(--sapphire-light));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slot-feature-card:hover::before {
    opacity: 0.3;
}

.slot-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    margin-bottom: 2rem;
}

.feature-icon .gem-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.gem-icon.ruby {
    background: linear-gradient(45deg, var(--ruby-red), var(--ruby-light));
    box-shadow: var(--glow-ruby);
}

.gem-icon.emerald {
    background: linear-gradient(45deg, var(--emerald-green), var(--emerald-light));
    box-shadow: var(--glow-emerald);
}

.gem-icon.sapphire {
    background: linear-gradient(45deg, var(--sapphire-blue), var(--sapphire-light));
    box-shadow: var(--glow-sapphire);
}

.feature-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Game Preview Section */
.game-preview {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

.game-showcase {
    text-align: center;
}

.slot-game-screen {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.slot-game-screen img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slot-game-screen:hover .play-overlay {
    opacity: 1;
}

.slot-play-btn {
    background: linear-gradient(45deg, var(--ruby-red), var(--golden-yellow));
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 20px;
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--glow-golden);
    transition: all 0.3s ease;
}

.slot-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
}

.play-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.play-triangle {
    width: 0;
    height: 0;
    border-left: 12px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 3px;
}

.play-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
}

.sparkle:nth-child(1) {
    top: 20%;
    left: 20%;
}

.sparkle:nth-child(2) {
    top: 30%;
    right: 20%;
}

.sparkle:nth-child(3) {
    bottom: 20%;
    left: 30%;
}

.sparkle:nth-child(4) {
    bottom: 30%;
    right: 30%;
}

/* About Section */
.about {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.slot-about-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.slot-about-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--ruby-red), var(--emerald-green), var(--sapphire-blue), var(--golden-yellow));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slot-about-card:hover::before {
    opacity: 0.3;
}

.slot-about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.card-header {
    margin-bottom: 2rem;
}

.card-header h2 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--golden-yellow), var(--ruby-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-gems {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.header-gem {
    width: 8px;
    height: 8px;
    border-radius: 2px;
}

.header-gem:nth-child(1) {
    background: var(--ruby-red);
}

.header-gem:nth-child(2) {
    background: var(--emerald-green);
}

.header-gem:nth-child(3) {
    background: var(--sapphire-blue);
}

.slot-about-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.slot-link {
    color: var(--golden-yellow);
    text-decoration: none;
    border-bottom: 1px solid var(--golden-yellow);
    transition: all 0.3s ease;
}

.slot-link:hover {
    color: var(--golden-light);
    border-bottom-color: var(--golden-light);
    text-shadow: 0 0 10px var(--golden-yellow);
}

/* Disclaimer Section */
.disclaimer {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

.disclaimer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.disclaimer-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.disclaimer-point {
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 2rem;
    position: relative;
}

.disclaimer-point::before {
    content: '💎';
    position: absolute;
    left: 0;
    top: 0;
}

/* Contact Section */
.contact {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-primary);
}

.slot-contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.slot-contact-form {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.slot-contact-form::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--ruby-red), var(--emerald-green), var(--sapphire-blue), var(--golden-yellow));
    border-radius: 22px;
    z-index: -1;
}

.form-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--golden-yellow), var(--ruby-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-secondary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--golden-yellow);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.slot-submit-btn {
    grid-column: 1 / -1;
    background: linear-gradient(45deg, var(--ruby-red), var(--golden-yellow));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--glow-golden);
}

.slot-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

/* Badges Section */
.badges {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.slot-badge {
    text-align: center;
    position: relative;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slot-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.slot-badge img {
    max-width: 100px;
    height: auto;
    filter: brightness(1.2);
}

.badge-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--ruby-red), var(--emerald-green), var(--sapphire-blue), var(--golden-yellow));
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slot-badge:hover .badge-glow {
    opacity: 0.3;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--ruby-red), var(--emerald-green), var(--sapphire-blue), var(--golden-yellow)) 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-disclaimer {
    color: var(--text-secondary);
    line-height: 1.8;
}

.newsletter {
    margin-bottom: 2rem;
}

.newsletter h3 {
    font-family: var(--font-primary);
    margin-bottom: 1rem;
    color: var(--golden-yellow);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 8px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--golden-yellow);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.newsletter-btn {
    background: linear-gradient(45deg, var(--ruby-red), var(--golden-yellow));
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--glow-golden);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--golden-yellow);
    text-shadow: 0 0 10px var(--golden-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .disclaimer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .slot-feature-card,
    .slot-about-card {
        padding: 1.5rem;
    }
    
    .slot-contact-form {
        padding: 2rem;
    }
}

.content {
    padding: 40px 10%;
   
}

.content-block {}

.content-block h2 {
    color: #ffffff;
}

.content-block p,
ul {
    color: rgba(183, 183, 183, 0.7);
}

.play-ground-area {
    padding: 2rem;
    background: black;
}

.play-game {
    max-width: 940px;
    margin: 0 auto;
}
