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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a1a1a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FFA500;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.logo-text {
    font-size: 1.5rem;
    color: #FFD700;
}

/* Header and Navigation */
.header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid #FFD700;
    box-shadow: 0 2px 20px rgba(255, 215, 0, 0.1);
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-link {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #FFD700;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-modal-content {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid #FFD700;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.age-modal-logo {
    margin-bottom: 2rem;
}

.age-modal-logo h2 {
    color: #FFD700;
    margin-top: 1rem;
}

.age-modal h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.age-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.age-disclaimer {
    font-size: 0.8rem;
    color: #ccc;
    margin-top: 1rem;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 1rem;
    border-top: 2px solid #FFD700;
    z-index: 9999;
    display: none;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn-gold {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #1a1a1a;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #FFD700;
    padding: 12px 24px;
    border: 2px solid #FFD700;
    border-radius: 25px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #FFD700;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.btn-link {
    color: #FFD700;
    text-decoration: underline;
    padding: 12px 24px;
}

.btn-play-now {
    background: linear-gradient(45deg, #DC2626, #991B1B);
    color: white;
    padding: 18px 36px;
    border: none;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.btn-play-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(220, 38, 38, 0.6);
    background: linear-gradient(45deg, #EF4444, #DC2626);
    color: white;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(255, 165, 0, 0.05) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(26, 26, 26, 0.8) 0%, 
        rgba(42, 42, 42, 0.6) 50%, 
        rgba(26, 26, 26, 0.8) 100%);
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #FFD700, #FFA500, #DC2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
    }
    to {
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: #cccccc;
    font-weight: 300;
}

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.slot-symbol {
    position: absolute;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.slot-symbol-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.slot-symbol-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1.5s;
}

.slot-symbol-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.slot-symbol-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(5deg);
    }
    66% {
        transform: translateY(10px) rotate(-5deg);
    }
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #DC2626);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.8;
}

/* Game Showcase Section */
.game-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.slot-machine {
    margin: 4rem 0;
    text-align: center;
}

.game-preview {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
}

.game-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.game-image:hover {
    transform: scale(1.02);
}

.btn-full-game {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #1a1a1a;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    margin: 2rem auto;
    display: block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-decoration: none;
    text-align: center;
}

.btn-full-game:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
    color: #1a1a1a;
}

/* Social Section */
.social-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.social-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.social-card {
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.social-card h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

/* Page Header */
.page-header {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 4rem;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 60px 0 20px;
    border-top: 3px solid #FFD700;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFD700;
}

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

.contact-info li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.responsible-gaming-notice {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #DC2626;
    margin-bottom: 2rem;
    text-align: center;
}

.responsible-gaming-notice h3 {
    color: #DC2626;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.support-organizations {
    margin: 2rem 0;
}

.support-organizations h4 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.support-links img {
    transition: transform 0.3s ease;
    border-radius: 8px;
    width: 120px;
    height: 60px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
}

.support-links img:hover {
    transform: scale(1.1);
}

.age-restriction {
    color: #DC2626;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #3a3a3a;
    color: #888;
}

/* About Page Styles */
.about-content {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2, .about-text h3 {
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 2rem;
    color: #cccccc;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    margin-bottom: 1rem;
    padding-left: 1rem;
    color: #cccccc;
    line-height: 1.6;
}

.feature-list li strong {
    color: #FFD700;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-card {
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #FFD700;
    text-align: center;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.about-card h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.about-card p {
    color: #cccccc;
    margin-bottom: 0;
}

.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.value-item {
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-item h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.value-item p {
    color: #cccccc;
}

.concept-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.concept-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.concept-text h3 {
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.concept-text ul {
    list-style: none;
    margin: 2rem 0;
}

.concept-text ul li {
    margin-bottom: 1rem;
    padding-left: 1rem;
    color: #cccccc;
}

.concept-text ul li strong {
    color: #FFD700;
}

.concept-highlight {
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid #FFD700;
    text-align: center;
}

.highlight-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.concept-highlight h4 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.concept-highlight p {
    color: #cccccc;
    margin-bottom: 0;
}

/* Games Page Styles */
.featured-game {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

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

.featured-info h2 {
    color: #FFD700;
    margin-bottom: 2rem;
}

.game-description {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.game-features h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.game-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.game-features ul li {
    margin-bottom: 0.8rem;
    color: #cccccc;
    padding-left: 1rem;
}

.btn-play-game {
    background: linear-gradient(45deg, #DC2626, #991B1B);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.btn-play-game:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.6);
}

.game-preview {
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    border-radius: 20px;
    padding: 2rem;
    border: 3px solid #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.preview-screen {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.preview-reels {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.preview-symbol {
    font-size: 3rem;
    background: linear-gradient(135deg, #4a4a4a, #3a3a3a);
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid #FFD700;
}

.preview-controls {
    margin-top: 2rem;
}

.preview-btn {
    background: linear-gradient(45deg, #DC2626, #991B1B);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    cursor: pointer;
    display: inline-block;
}

.game-rules {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.rule-card {
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
    position: relative;
}

.rule-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.rule-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #1a1a1a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
}

.rule-card h3 {
    color: #FFD700;
    margin: 1rem 0;
}

.rule-card p {
    color: #cccccc;
    margin-bottom: 0;
}

.paytable-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.paytable {
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    border-radius: 20px;
    padding: 3rem;
    border: 3px solid #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.paytable-header {
    text-align: center;
    margin-bottom: 3rem;
}

.paytable-header h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.paytable-header p {
    color: #cccccc;
    margin-bottom: 0;
}

.paytable-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.paytable-row {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    align-items: center;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 10px;
    border: 1px solid #FFD700;
}

.symbol-combo {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.symbol-combo .symbol {
    font-size: 1.5rem;
}

.payout {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #FFD700;
    font-size: 1.2rem;
}

.description {
    text-align: center;
    color: #cccccc;
}

.coming-soon {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.upcoming-games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.upcoming-card {
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #FFA500;
    transition: all 0.3s ease;
    position: relative;
}

.upcoming-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 165, 0, 0.2);
}

.upcoming-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.upcoming-card h3 {
    color: #FFA500;
    margin-bottom: 1rem;
}

.upcoming-card p {
    color: #cccccc;
    margin-bottom: 2rem;
}

.coming-date {
    background: linear-gradient(45deg, #FFA500, #FF8C00);
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.game-faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.faq-item {
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.faq-item h3 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-item p {
    color: #cccccc;
    margin-bottom: 0;
    line-height: 1.7;
}

/* Contact Page Styles */
.contact-content {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info h2 {
    color: #FFD700;
    margin-bottom: 2rem;
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    border-radius: 15px;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.method-icon {
    font-size: 2rem;
    margin-top: 0.5rem;
}

.method-details h3 {
    color: #FFD700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.method-details p {
    margin-bottom: 0.5rem;
}

.method-details a {
    color: #FFD700;
    font-weight: 600;
}

.method-hours {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contact-form {
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.contact-form h2 {
    color: #FFD700;
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #FFD700;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #2a2a2a;
    border: 2px solid #555;
    border-radius: 10px;
    padding: 12px 15px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    color: #cccccc;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #FFD700;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
}

.btn-submit {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #1a1a1a;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

.contact-faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.support-hours {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.hours-card {
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
}

.hours-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.hours-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.hours-card h3 {
    color: #FFD700;
    margin-bottom: 2rem;
}

.hours-schedule p {
    color: #cccccc;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.hours-schedule small {
    display: block;
    color: #aaa;
    font-style: italic;
    margin-top: 1rem;
}

/* Responsible Gaming Page Styles */
.responsible-content {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.intro-section {
    text-align: center;
    margin-bottom: 5rem;
}

.intro-section h2 {
    color: #FFD700;
    margin-bottom: 2rem;
}

.intro-section p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.safety-card {
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #DC2626;
    transition: all 0.3s ease;
}

.safety-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.safety-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.safety-card h3 {
    color: #DC2626;
    margin-bottom: 1rem;
}

.safety-card p {
    color: #cccccc;
    margin-bottom: 0;
}

.self-assessment {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.assessment-questions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.question-card {
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
}

.question-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.question-card h3 {
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.question-card ul {
    list-style: none;
    margin: 0;
}

.question-card ul li {
    color: #cccccc;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.question-card ul li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

.assessment-result {
    background: linear-gradient(135deg, #DC2626, #991B1B);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    text-align: center;
}

.assessment-result p {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.tools-resources {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.tool-card {
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.tool-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.tool-card h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.tool-card p {
    color: #cccccc;
    margin-bottom: 0;
}

.support-resources {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.resource-card {
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid #DC2626;
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.resource-card h3 {
    color: #DC2626;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.resource-card p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.resource-contact {
    border-top: 1px solid #555;
    padding-top: 1.5rem;
}

.resource-contact p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.resource-contact strong {
    color: #FFD700;
}

.resource-contact a {
    color: #DC2626;
    font-weight: 600;
}

.international-resources {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.international-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.international-card {
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
}

.international-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.international-card img {
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.international-card h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.international-card p {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.international-card p strong {
    color: #FFD700;
}

.warning-signs {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.warning-category {
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid #DC2626;
    transition: all 0.3s ease;
}

.warning-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.2);
}

.warning-category h3 {
    color: #DC2626;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.warning-category ul {
    list-style: none;
    margin: 0;
}

.warning-category ul li {
    color: #cccccc;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.warning-category ul li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.our-commitment {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.commitment-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.commitment-text h3 {
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.commitment-text p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.commitment-action {
    display: flex;
    align-items: center;
}

.action-card {
    background: linear-gradient(135deg, #DC2626, #991B1B);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.action-card h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.action-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.help-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-help {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
}

.btn-help:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
}

/* Legal Pages Styles */
.legal-content {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.legal-content h1 {
    color: #FFD700;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #aaa;
    font-style: italic;
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    padding: 4rem;
    border-radius: 20px;
    border: 2px solid #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.legal-text h2 {
    color: #FFD700;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    font-size: 2rem;
}

.legal-text h2:first-of-type {
    margin-top: 0;
}

.legal-text h3 {
    color: #FFA500;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-size: 1.4rem;
}

.legal-text p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-text ul,
.legal-text ol {
    color: #cccccc;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-text ul li,
.legal-text ol li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-text strong {
    color: #FFD700;
}

.legal-text a {
    color: #FFD700;
    text-decoration: underline;
}

.legal-text a:hover {
    color: #FFA500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-grid,
    .featured-content,
    .concept-content,
    .contact-grid,
    .commitment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .assessment-questions {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 2px solid #FFD700;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .features-grid,
    .values-grid,
    .rules-grid,
    .tools-grid,
    .safety-grid,
    .upcoming-games,
    .hours-grid,
    .resources-grid,
    .international-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-features {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .warning-grid {
        grid-template-columns: 1fr;
    }
    
    .slot-machine {
        padding: 2rem 1rem;
    }
    
    .slot-reels {
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .reel {
        width: 60px;
        height: 100px;
    }
    
    .symbol {
        font-size: 2rem;
    }
    
    .slot-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .paytable-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .support-links {
        gap: 0.5rem;
    }
    
    .support-links img {
        width: 100px;
        height: 50px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .age-modal-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .age-modal-buttons {
        flex-direction: column;
    }
    
    .legal-text {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .responsible-gaming-notice {
        padding: 2rem;
    }
    
    .help-buttons {
        gap: 0.5rem;
    }
    
    .btn-help {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .hero-decorations {
        display: none;
    }
    
    .slot-symbol {
        display: none;
    }
    
    .feature-card,
    .value-item,
    .rule-card,
    .tool-card,
    .safety-card,
    .upcoming-card,
    .hours-card,
    .resource-card,
    .international-card,
    .about-card,
    .social-card,
    .faq-item {
        padding: 2rem 1.5rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-image {
        width: 32px;
        height: 32px;
    }
    
    .btn-play-now {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .legal-text {
        padding: 1.5rem;
    }
    
    .responsible-gaming-notice {
        padding: 1.5rem;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .age-modal,
    .cookie-consent,
    .hero-decorations,
    .slot-machine,
    .btn-play-now,
    .btn-full-game,
    .btn-play-game {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section-title,
    .page-header h1,
    h1, h2, h3, h4, h5, h6 {
        color: black;
    }
    
    .legal-text {
        background: none;
        border: none;
        box-shadow: none;
        padding: 0;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .feature-card,
    .value-item,
    .rule-card,
    .tool-card,
    .safety-card,
    .upcoming-card,
    .hours-card,
    .resource-card,
    .international-card,
    .about-card,
    .social-card,
    .faq-item,
    .contact-form,
    .legal-text {
        border-width: 3px;
    }
    
    .btn-gold,
    .btn-secondary,
    .btn-play-now,
    .btn-submit,
    .btn-play-game,
    .btn-full-game {
        border: 2px solid;
    }
}

/* Focus Styles for Accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 3px solid #FFD700;
    outline-offset: 2px;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    /* Already dark theme by default */
}

/* Light Mode Override (if needed) */
@media (prefers-color-scheme: light) {
    /* Keep dark theme for casino aesthetic */
}