/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a0033 0%, #2d0a4e 50%, #1a0033 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Age Verification Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, backdrop-filter 0.4s ease;
}

.popup-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.popup-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.popup-content {
    background: linear-gradient(135deg, rgba(45, 10, 78, 0.95) 0%, rgba(26, 0, 51, 0.95) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 2px solid #ff0066;
    box-shadow: 0 10px 60px rgba(255, 0, 102, 0.4), 
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup-overlay.show .popup-content {
    transform: scale(1);
}

.popup-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ff0066;
    text-shadow: 0 0 20px rgba(255, 0, 102, 0.5);
    font-weight: 700;
}

.popup-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #ffffff;
    line-height: 1.6;
}

.popup-disclaimer {
    font-size: 13px !important;
    margin-top: 30px !important;
    margin-bottom: 0 !important;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 0, 102, 0.3);
}

.btn-yes {
    background: linear-gradient(135deg, #ff0066 0%, #cc0052 100%);
    color: white;
    border: none;
    padding: 18px 60px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255, 0, 102, 0.3);
}

.btn-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 0, 102, 0.6);
    background: linear-gradient(135deg, #ff1a75 0%, #d6005e 100%);
}

.btn-yes:active {
    transform: translateY(-1px);
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 0;
    border-bottom: 2px solid #ff0066;
    width: 100%;
    overflow: hidden;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
    z-index: 1001;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.logo {
    display: block;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.logo img {
    height: 60px;
    width: auto;
    max-width: 100%;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav.mobile-menu {
    display: none;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    border-top: 2px solid #ff0066;
    padding: 20px 0;
    z-index: 1000;
    box-sizing: border-box;
}

nav.mobile-menu.active {
    display: block;
}

nav.mobile-menu ul {
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
}

nav.mobile-menu li {
    border-bottom: 1px solid rgba(255, 0, 102, 0.2);
}

nav.mobile-menu li:last-child {
    border-bottom: none;
}

nav.mobile-menu a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
    color: #ff0066;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
}

.hero-logo {
    text-align: center;
    margin-bottom: 20px;
}

.hero-logo img {
    max-width: 300px;
    height: auto;
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
    color: #cccccc;
}

.hero-title {
    font-size: 28px;
    margin-bottom: 40px;
}

.hero-cta {
    color: #ff0066;
    font-weight: bold;
}

.signup-form {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form input[type="password"] {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #ff0066;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    box-sizing: border-box;
}

.signup-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    text-align: left;
}

.terms-checkbox input {
    margin-top: 5px;
}

.terms-checkbox label {
    font-size: 12px;
    color: #cccccc;
}

.form-notice {
    font-size: 12px;
    color: #cccccc;
    margin-bottom: 20px;
}

.btn-create {
    width: 100%;
    background: linear-gradient(135deg, #ff0066 0%, #cc0052 100%);
    color: white;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-create:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 102, 0.5);
}

/* Games Preview Section */
.games-preview {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
}

.games-preview h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    width: 100%;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #ff0066;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 0, 102, 0.3);
}

.game-card img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
}

.game-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ff0066;
}

.game-card p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 20px;
}

.btn-play {
    display: inline-block;
    background: linear-gradient(135deg, #ff0066 0%, #cc0052 100%);
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 102, 0.5);
}

.btn-show-more {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background: linear-gradient(135deg, #6600cc 0%, #4d0099 100%);
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-show-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 0, 204, 0.5);
}

/* All Games Page */
.all-games {
    padding: 60px 0;
    min-height: 60vh;
}

.all-games h1 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: #ff0066;
}

.games-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #cccccc;
}

.games-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

/* Game Page */
.game-page {
    padding: 60px 0;
    min-height: 70vh;
}

.game-page h1 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: #ff0066;
}

.game-description {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #cccccc;
}

.game-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 50px;
    background: #000;
    border: 3px solid #ff0066;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 0, 102, 0.3);
}

.game-container iframe {
    width: 100%;
    height: 700px;
    display: block;
}

.game-info {
    max-width: 900px;
    margin: 0 auto;
}

.info-section {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #ff0066;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    width: 100%;
    box-sizing: border-box;
}

.info-section h2 {
    font-size: 28px;
    color: #ff0066;
    margin-bottom: 20px;
}

.info-section ol,
.info-section ul {
    margin-left: 20px;
}

.info-section li {
    margin-bottom: 10px;
    font-size: 16px;
}

.info-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.back-to-games {
    text-align: center;
    margin-top: 40px;
}

.btn-back {
    display: inline-block;
    background: linear-gradient(135deg, #6600cc 0%, #4d0099 100%);
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-back:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 0, 204, 0.5);
}

/* No Purchase Section */
.no-purchase {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.5);
}

.no-purchase h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

.no-purchase h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 15px;
    color: #ff0066;
}

.no-purchase h4 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
}

.no-purchase p {
    text-align: center;
    margin-bottom: 15px;
    color: #cccccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
    width: 100%;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #ff0066;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.feature-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ff0066;
}

.feature-card p {
    font-size: 14px;
    color: #cccccc;
}

.btn-read-more {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    background: linear-gradient(135deg, #ff0066 0%, #cc0052 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 102, 0.5);
}

/* FAQ Section */
.faq {
    padding: 60px 0;
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #ff0066;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #ff0066;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.faq-item h3 {
    font-size: 18px;
    color: #ffffff;
    padding-right: 50px;
}

.faq-answer {
    font-size: 16px;
    color: #cccccc;
    margin-top: 15px;
    line-height: 1.8;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 0, 102, 0.3);
}

.faq-toggle {
    position: absolute;
    right: 20px;
    top: 20px;
    background: #ff0066;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-toggle:hover {
    background: #cc0052;
    transform: scale(1.1);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px 0 20px;
    border-top: 2px solid #ff0066;
}

.footer-logo {
    text-align: center;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

.footer-text {
    text-align: center;
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff0066;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-logos img {
    width: 80px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-logos a {
    display: inline-block;
    text-decoration: none;
}

.footer-logos a:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}

.footer-copyright {
    text-align: center;
    font-size: 12px;
    color: #999999;
}

/* Contact Page */
.contact-page {
    padding: 60px 0;
    min-height: 60vh;
}

.contact-page h1 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: #ff0066;
}

.contact-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #cccccc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #ff0066;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-submit {
    background: linear-gradient(135deg, #ff0066 0%, #cc0052 100%);
    color: white;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 102, 0.5);
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #ff0066;
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
}

.contact-info h3 {
    font-size: 28px;
    color: #ff0066;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* About Page */
.about-page {
    padding: 60px 0;
    min-height: 60vh;
}

.about-page h1 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: #ff0066;
}

.about-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #cccccc;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-section {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #ff0066;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    width: 100%;
    box-sizing: border-box;
}

.about-section h2 {
    font-size: 28px;
    color: #ff0066;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-section ul {
    margin-left: 20px;
}

.about-section li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Auth Pages (Login/Signup) */
.auth-page {
    padding: 60px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.auth-box {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #ff0066;
    border-radius: 15px;
    padding: 40px;
    width: 100%;
    box-sizing: border-box;
}

.auth-box h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: #ff0066;
}

.auth-subtitle {
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
    color: #cccccc;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-form input {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #ff0066;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    box-sizing: border-box;
}

.auth-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 10px;
}

.remember-me label {
    font-size: 14px;
    color: #cccccc;
}

.btn-auth {
    width: 100%;
    background: linear-gradient(135deg, #ff0066 0%, #cc0052 100%);
    color: white;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 102, 0.5);
}

.auth-link {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #cccccc;
}

.auth-link a {
    color: #ff0066;
    text-decoration: none;
    font-weight: bold;
}

.auth-link a:hover {
    text-decoration: underline;
}

/* Policy Pages */
.policy-page {
    padding: 60px 0;
    min-height: 70vh;
}

.policy-page h1 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 10px;
    color: #ff0066;
}

.policy-date {
    text-align: center;
    font-size: 14px;
    color: #999999;
    margin-bottom: 50px;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #ff0066;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    width: 100%;
    box-sizing: border-box;
}

.policy-section h2 {
    font-size: 24px;
    color: #ff0066;
    margin-bottom: 20px;
}

.policy-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-section ul {
    margin-left: 20px;
}

.policy-section li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Card Game Rules Page */
.card-rules-page {
    padding: 60px 0;
    min-height: 70vh;
}

.card-rules-page h1 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: #ff0066;
}

.rules-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #cccccc;
}

.rules-content {
    max-width: 1000px;
    margin: 0 auto;
}

.rules-section {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #ff0066;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 30px;
    width: 100%;
    box-sizing: border-box;
}

.rules-section h2 {
    font-size: 32px;
    color: #ff0066;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(255, 0, 102, 0.3);
    padding-bottom: 15px;
}

.rules-section h3 {
    font-size: 24px;
    color: #ffffff;
    margin-top: 25px;
    margin-bottom: 15px;
}

.rules-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #cccccc;
}

.rules-section ul,
.rules-section ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.rules-section li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
}

.rules-section strong {
    color: #ff0066;
}

/* Hand Rankings Styles */
.hand-rankings {
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.1) 0%, rgba(102, 0, 204, 0.1) 100%);
}

.hand-rank {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 0, 102, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.hand-rank:hover {
    transform: translateX(10px);
    border-color: #ff0066;
    background: rgba(255, 0, 102, 0.1);
}

.hand-rank h3 {
    color: #ff0066;
    margin-top: 0;
    font-size: 22px;
}

.hand-rank p {
    margin-bottom: 10px;
}

.example {
    background: rgba(0, 0, 0, 0.5);
    padding: 12px;
    border-left: 3px solid #ff0066;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    color: #ffffff;
    margin-top: 10px;
}

.practice-notice {
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.15) 0%, rgba(102, 0, 204, 0.15) 100%);
    border: 3px solid #ff0066;
    text-align: center;
}

.practice-notice h2 {
    border-bottom: none;
}

.practice-notice p {
    font-size: 17px;
    margin-bottom: 20px;
}

.practice-notice .btn-play {
    margin-top: 20px;
    display: inline-block;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(45, 10, 78, 0.98) 0%, rgba(26, 0, 51, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-top: 2px solid #ff0066;
    padding: 30px 20px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -8px 40px rgba(255, 0, 102, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.cookie-popup.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-popup.hidden {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 0;
}

.cookie-text a {
    color: #ff0066;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.cookie-text a:hover {
    border-bottom-color: #ff0066;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 14px 35px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    white-space: nowrap;
}

.btn-accept {
    background: linear-gradient(135deg, #ff0066 0%, #cc0052 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 102, 0.3);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 0, 102, 0.5);
    background: linear-gradient(135deg, #ff1a75 0%, #d6005e 100%);
}

.btn-accept:active {
    transform: translateY(0);
}

.btn-decline {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 2px solid rgba(255, 0, 102, 0.6);
}

.btn-decline:hover {
    background: rgba(255, 0, 102, 0.15);
    border-color: #ff0066;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-wrap: wrap;
    }

    .burger-menu {
        display: flex;
    }

    nav:not(.mobile-menu) ul {
        display: none;
    }

    .cookie-popup {
        padding: 25px 15px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-text {
        min-width: 100%;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
        gap: 12px;
    }

    .btn-cookie {
        flex: 1;
        min-width: 130px;
        padding: 13px 25px;
        font-size: 13px;
    }

    .hero-logo h2 {
        font-size: 36px;
    }

    .games-grid,
    .games-grid-full {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .game-container {
        max-width: 100%;
    }

    .game-container iframe {
        height: 500px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .brand {
        flex-direction: row;
        gap: 10px;
    }

    .logo-text {
        font-size: 20px;
        text-align: center;
        letter-spacing: 0.05em;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .auth-box {
        margin: 0 20px;
        padding: 30px 20px;
    }

    .popup-content {
        margin: 20px;
        padding: 40px 25px;
        max-width: 90%;
        width: calc(100% - 40px);
    }

    .popup-content h2 {
        font-size: 28px;
    }

    .popup-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .btn-yes {
        padding: 15px 45px;
        font-size: 16px;
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 24px;
    }

    .games-preview,
    .no-purchase,
    .faq,
    .all-games,
    .game-page,
    .contact-page,
    .about-page,
    .auth-page,
    .policy-page,
    .card-rules-page {
        padding: 40px 0;
    }
}

/* Additional mobile breakpoint for very small screens */
@media (max-width: 480px) {
    .games-grid,
    .games-grid-full,
    .features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .container {
        padding: 0 10px;
    }

    .hero-logo img {
        max-width: 200px;
    }

    .logo img {
        height: 50px;
    }

    .popup-content {
        margin: 15px;
        padding: 35px 20px;
    }

    .popup-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .popup-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .btn-yes {
        padding: 14px 40px;
        font-size: 15px;
    }
    
    .popup-disclaimer {
        font-size: 12px !important;
        margin-top: 25px !important;
    }
    
    .cookie-popup {
        padding: 20px 12px;
    }
    
    .cookie-text p {
        font-size: 14px;
    }
    
    .btn-cookie {
        padding: 12px 20px;
        font-size: 12px;
    }

    .game-container iframe {
        height: 400px;
    }

    .auth-box {
        margin: 0 10px;
        padding: 25px 15px;
    }

    h1 {
        font-size: 32px !important;
    }

    h2 {
        font-size: 24px !important;
    }
}

