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

body {
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
}

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

/* Age Gate Styles */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1443b6, #00bad6, #0c88c1);
    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;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-gate-content {
    background: rgb(2 4 51 / 80%);
    border: 2px solid #00ffff;
    border-radius: 15px;
    padding: 50px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.3);
}

.age-gate-icon {
    margin-bottom: 30px;
}

.neon-circle {
    width: 120px;
    height: 120px;
    border: 3px solid #00ffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    animation: neonPulse 2s infinite;
}

.age-text {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
}

.neon-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 30px #00ffff;
    margin-bottom: 20px;
    animation: textGlow 3s infinite alternate;
}

.age-gate-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #cccccc;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.age-btn {
    padding: 15px 30px;
    border: 2px solid;
    border-radius: 8px;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.age-btn.confirm {
    background: transparent;
    border-color: #00ffff;
    color: #00ffff;
}

.age-btn.confirm:hover {
    background: #00ffff;
    color: #000000;
    box-shadow: 0 0 30px #00ffff;
}

.age-btn.deny {
    background: transparent;
    border-color: #ff0066;
    color: #ff0066;
}

.age-btn.deny:hover {
    background: #ff0066;
    color: #ffffff;
    box-shadow: 0 0 30px #ff0066;
}

.age-footer p {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

.age-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-symbol {
    position: absolute;
    font-size: 3rem;
    color: rgba(0, 255, 255, 0.2);
    animation: floatSymbol 8s infinite linear;
}

.floating-symbol:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-symbol:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-symbol:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.floating-symbol:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 6s;
}

@keyframes neonPulse {
    0%, 100% { box-shadow: 0 0 20px #00ffff; }
    50% { box-shadow: 0 0 40px #00ffff, 0 0 60px #00ffff; }
}

@keyframes textGlow {
    0% { text-shadow: 0 0 20px #00ffff; }
    100% { text-shadow: 0 0 40px #00ffff, 0 0 60px #00ffff; }
}

@keyframes floatSymbol {
    0% { transform: translateY(0px) rotate(0deg); opacity: 0.2; }
    50% { opacity: 0.5; }
    100% { transform: translateY(-20px) rotate(360deg); opacity: 0.2; }
}

/* Main Content */
.main-content {
    opacity: 1;
    transition: opacity 0.5s ease;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    position: relative;
}

/* .diamond-shape {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #00ffff, #ff0066);
    transform: rotate(45deg);
    border-radius: 8px;
    animation: diamondSpin 4s infinite linear;
} */

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-item {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
}

.nav-item:hover {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #ff0066);
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #00ffff;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}
@keyframes diamondSpin {
    0% { transform: rotate(45deg); }
    100% { transform: rotate(405deg); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a0033 50%, #330066 100%);
    z-index: -2;
    background-image: url('../image/bg.jpg');
    background-size: cover;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s infinite linear;
}

.particle-system {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00ffff;
    border-radius: 50%;
    animation: particleFloat 6s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 1.2s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: 2.4s;
}

.particle:nth-child(4) {
    top: 40%;
    left: 60%;
    animation-delay: 3.6s;
}

.particle:nth-child(5) {
    top: 10%;
    left: 90%;
    animation-delay: 4.8s;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    z-index: 2;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.2;
}

.title-line {
    display: block;
    color: #ffffff;
}

.neon-text {
    color: #00ffff;
    text-shadow: 0 0 30px #00ffff;
    animation: textPulse 3s infinite;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #ffffff;
    line-height: 1.6;
}

.cta-button {
    position: relative;
    background: transparent;
    border: 2px solid #ff0066;
    color: #ff0066;
    padding: 20px 40px;
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.cta-button:hover {
    background: #ff0066;
    color: #ffffff;
    box-shadow: 0 0 40px #ff0066;
    transform: translateY(-3px);
}

.btn-particles {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.btn-particles span {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #ff0066;
    border-radius: 50%;
    margin: 0 2px;
    animation: btnParticle 1.5s infinite ease-in-out;
}

.btn-particles span:nth-child(2) {
    animation-delay: 0.2s;
}

.btn-particles span:nth-child(3) {
    animation-delay: 0.4s;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slot-machine {
    position: relative;
    background: linear-gradient(145deg, #1a1a1a, #333333);
    border: 3px solid #00ffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.3);
}

.slot-frame {
    display: flex;
    gap: 10px;
    background: #000000;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #ff0066;
}

.slot-reel {
    width: 80px;
    height: 120px;
    background: #111111;
    border: 1px solid #333333;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.slot-symbol {
    font-size: 2rem;
    animation: slotSpin 2s infinite linear;
}

.slot-reel:nth-child(2) .slot-symbol {
    animation-delay: 0.3s;
}

.slot-reel:nth-child(3) .slot-symbol {
    animation-delay: 0.6s;
}

.slot-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #00ffff, #ff0066, #00ffff);
    border-radius: 25px;
    z-index: -1;
    animation: slotGlow 3s infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px); opacity: 0.5; }
    50% { transform: translateY(-20px); opacity: 1; }
}

@keyframes textPulse {
    0%, 100% { text-shadow: 0 0 20px #00ffff; }
    50% { text-shadow: 0 0 40px #00ffff, 0 0 60px #00ffff; }
}

@keyframes btnParticle {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.5); opacity: 1; }
}

@keyframes slotSpin {
    0% { transform: translateY(0); }
    100% { transform: translateY(-40px); }
}

@keyframes slotGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Overview Section */
.overview {
    padding: 100px 0;
    background: #001e3a;
    position: relative;
}

.overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
}

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

.overview-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 102, 0.1));
}

.overlay-pattern {
    width: 100%;
    height: 100%;
    /* background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 255, 255, 0.1) 10px,
        rgba(0, 255, 255, 0.1) 20px
    ); */
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
}

.section-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #cccccc;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #07467b;
}

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

.feature-card {
    background: linear-gradient(145deg, #0e5699, #2a2a2a);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 40px;
    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(0, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

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

.feature-icon {
    margin-bottom: 25px;
}

.icon-bg {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00ffff, #ff0066);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    animation: iconPulse 3s infinite;
}

.feature-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.feature-text {
    color: #cccccc;
    line-height: 1.6;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Game Preview */
.game-preview {
    padding: 100px 0;
    background: #001e3a;
    text-align: center;
}

.game-showcase {
    position: relative;
    display: inline-block;
}

.game-screen {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #ff0066;
    box-shadow: 0 0 50px rgba(255, 0, 102, 0.3);
}

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

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

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

.play-btn {
    background: transparent;
    border: 2px solid #00ffff;
    color: #00ffff;
    padding: 20px 40px;
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: #00ffff;
    color: #000000;
    transform: scale(1.1);
    box-shadow: 0 0 30px #00ffff;
}

.play-icon {
    font-size: 1.5rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #07467b;
}

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

.about-card {
    background: linear-gradient(145deg, #0e5699, #2a2a2a);
    border: 1px solid #00e1ff96;
    border-radius: 15px;
    padding: 40px;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: #00e0ff;
    box-shadow: 0 15px 30px #00e1ff55;
}

.card-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #00e0ff;
}

.card-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 600;
    color: #00e0ff;
    text-shadow: 0 0 15px #d0e3e9;
}

.about-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Disclaimer Section */
.disclaimer {
    padding: 100px 0;
    background: #001e3a;
}

.disclaimer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.disclaimer-text h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #00ffff;
    text-shadow: 0 0 15px #00ffff;
}

.disclaimer-text p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1.1rem;
}

.disclaimer-image {
    border-radius: 15px;
    overflow: hidden;
    /* border: 2px solid #ff0066; */
    box-shadow: 0 0 30px rgba(255, 0, 102, 0.3);
}

.disclaimer-image img {
    width: 100%;
    /* height: 300px; */
    object-fit: cover;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #07467b;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, #0e5699, #2a2a2a);
    border: 2px solid #00ffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.2);
}

.form-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

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

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

.form-group label {
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.submit-btn {
    grid-column: 1 / -1;
    background: transparent;
    border: 2px solid #ff0066;
    color: #ff0066;
    padding: 18px 40px;
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-self: center;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #ff0066;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 0, 102, 0.3);
}

/* Badges Section */
.badges {
    padding: 60px 0;
    background: #001e3a;
}

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

.badge {
    text-align: center;
    /* opacity: 0.7; */
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
}

.badge:hover {
    opacity: 1;
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.badge img {
    width: 100px;
    /* height: 80px; */
    object-fit: contain;
    /* filter: grayscale(100%) brightness(0.7); */
    transition: filter 0.3s ease;
}

.badge:hover img {
    filter: grayscale(0%) brightness(1);
}

/* Footer */
.footer {
    background: #000000;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    color: #888;
    line-height: 1.6;
    font-size: 0.95rem;
}

.newsletter h3 {
    color: #00ffff;
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00ffff;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #00ffff;
}

.newsletter-form button {
    background: transparent;
    border: 2px solid #00ffff;
    color: #00ffff;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #00ffff;
    color: #000000;
    box-shadow: 0 0 20px #00ffff;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-family: 'Orbitron', monospace;
}

.footer-links a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(0, 255, 255, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        font-size: 1.5rem;
        margin: 20px 0;
        padding: 15px 30px;
        border: 1px solid rgba(0, 255, 255, 0.3);
        border-radius: 8px;
        width: 80%;
        text-align: center;
        background: rgba(0, 255, 255, 0.1);
    }
    
    .nav-item:hover {
        background: rgba(0, 255, 255, 0.2);
        transform: scale(1.05);
    }
    
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .disclaimer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .age-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .slot-machine {
        transform: scale(0.8);
    }
}


.content {
    background-color: #ffffff;
    padding: 40px 10%;
    background: linear-gradient(#07467b, #07467b), url(../image/bg.png) center / cover;
    background-attachment: fixed;
}

.content-block {}

.content-block h2 {
    color: #00ffff;
}

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

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

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

a{
    text-decoration: none;
    color: white;
}

.card-icon img{
    width: 100px;
}