* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e6e6e6;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Header Styles */
header {
    background: rgba(20, 20, 30, 0.95);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #c41e3a;
    box-shadow: 0 4px 20px rgba(196, 30, 58, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #c41e3a;
    text-decoration: none;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: #e6e6e6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c41e3a;
    transition: width 0.3s;
}

nav a:hover {
    color: #c41e3a;
}

nav a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #c41e3a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(22, 33, 62, 0.8) 100%);
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 3px solid #c41e3a;
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: #c41e3a;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(196, 30, 58, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #c41e3a 0%, #9a1729 100%);
    color: white;
    padding: 1rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.6);
}

/* Main Content */
main {
    padding: 2rem 0;
}

section {
    margin-bottom: 3rem;
}

h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: #c41e3a;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #e6e6e6;
    margin-bottom: 1rem;
}

/* About Section */
.about-section {
    background: rgba(30, 30, 45, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(196, 30, 58, 0.3);
}

.about-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Notices Section */
.notices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.notice-card {
    background: rgba(30, 30, 45, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #c41e3a;
    text-align: center;
    transition: transform 0.3s;
}

.notice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

.notice-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Game Section */
.game-section {
    background: rgba(30, 30, 45, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(196, 30, 58, 0.3);
}

.game-container {
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #c41e3a;
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.4);
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.game-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(20, 20, 30, 0.8);
    border-radius: 10px;
}

.game-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

/* Features Section */
.features-section {
    margin: 3rem 0;
}

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

.feature-box {
    background: rgba(30, 30, 45, 0.8);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #c41e3a;
    transition: all 0.3s;
}

.feature-box:hover {
    background: rgba(40, 40, 55, 0.9);
    transform: translateX(5px);
}

/* Responsible Gaming Section */
.responsible-gaming {
    background: rgba(196, 30, 58, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #c41e3a;
    text-align: center;
}

.responsible-gaming p {
    font-size: 1.1rem;
    margin: 1rem 0;
}

/* Play Page Styles */
.play-page {
    padding-bottom: 4rem;
}

.play-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(30, 30, 45, 0.6);
    border-radius: 15px;
}

.play-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #c41e3a;
    margin-bottom: 1rem;
}

.game-play-section {
    margin: 2rem 0;
}

.game-container-full {
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #c41e3a;
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.4);
}

.game-frame-full {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.game-instructions {
    margin: 3rem 0;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.instruction-item {
    background: rgba(30, 30, 45, 0.8);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #c41e3a;
}

.play-reminders {
    margin: 2rem 0;
}

.reminder-box {
    background: rgba(196, 30, 58, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #c41e3a;
}

.reminder-box ul {
    list-style-position: inside;
    margin-top: 1rem;
}

.reminder-box li {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(30, 30, 45, 0.6);
    border-radius: 15px;
}

.legal-page h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #c41e3a;
    margin-bottom: 1rem;
    text-align: center;
}

.updated {
    text-align: center;
    color: #999;
    margin-bottom: 2rem;
}

.legal-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(20, 20, 30, 0.5);
    border-radius: 10px;
    border-left: 4px solid #c41e3a;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: #c41e3a;
    text-align: left;
    margin-bottom: 1rem;
}

.legal-section p {
    margin: 1rem 0;
    line-height: 1.8;
}

.disclaimer-highlight {
    background: rgba(196, 30, 58, 0.2);
    border: 3px solid #c41e3a;
}

/* Footer */
footer {
    background: rgba(20, 20, 30, 0.95);
    color: #b0b0b0;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 3px solid #c41e3a;
}

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

.footer-section h4 {
    color: #c41e3a;
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
}

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

.footer-section li {
    margin: 0.5rem 0;
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #c41e3a;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(196, 30, 58, 0.3);
    font-size: 0.9rem;
}

/* Age Verification Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid #c41e3a;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(196, 30, 58, 0.5);
}

.modal-header h2 {
    font-family: 'Cinzel', serif;
    color: #c41e3a;
    margin-bottom: 1.5rem;
}

.modal-body p {
    margin: 1rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.btn-confirm,
.btn-deny {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Rajdhani', sans-serif;
}

.btn-confirm {
    background: linear-gradient(135deg, #c41e3a 0%, #9a1729 100%);
    color: white;
}

.btn-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.6);
}

.btn-deny {
    background: #333;
    color: #e6e6e6;
}

.btn-deny:hover {
    background: #444;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 70px;
        right: -100%;
        background: rgba(20, 20, 30, 0.98);
        flex-direction: column;
        padding: 2rem;
        border-left: 3px solid #c41e3a;
        transition: right 0.3s;
        height: calc(100vh - 70px);
        width: 250px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    nav.active {
        right: 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .game-frame {
        height: 400px;
    }

    .game-frame-full {
        height: 500px;
    }

    .modal-content {
        margin: 1rem;
        padding: 2rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .notices {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .instructions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo span {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .game-frame {
        height: 300px;
    }

    .game-frame-full {
        height: 400px;
    }
}
