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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    min-height: 100vh;
}

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

.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #00ff88;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-brand {
    display: flex;
    align-items: center;
}

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

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(45deg, #00ff88, #00cc66);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

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

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #00ff88, #00cc66);
    transition: width 0.3s ease;
}

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

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

.btn-primary {
    background: linear-gradient(45deg, #00ff88, #00cc66);
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #00ff88;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #00ff88;
    color: #000000;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

main {
    margin-top: 80px;
}

.hero {
    padding: 80px 0;
    background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    overflow: hidden;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #00ff88);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #cccccc;
    line-height: 1.6;
}

.hero-disclaimers {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.disclaimer-badge {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.btn-hero {
    background: linear-gradient(45deg, #00ff88, #00cc66);
    color: #000000;
    border: none;
    padding: 18px 36px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 255, 136, 0.4);
}

.wheel-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 8px solid #00ff88;
    position: relative;
    background: conic-gradient(
        #000000 0deg 45deg,
        #1a1a1a 45deg 90deg,
        #000000 90deg 135deg,
        #1a1a1a 135deg 180deg,
        #000000 180deg 225deg,
        #1a1a1a 225deg 270deg,
        #000000 270deg 315deg,
        #1a1a1a 315deg 360deg
    );
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    transition: transform 3s cubic-bezier(0.23, 1, 0.32, 1);
}

.wheel-section {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    height: 2px;
    transform-origin: 0 0;
    transform: translate(-50%, -50%) rotate(var(--rotation)) translateX(90px);
    color: #00ff88;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheel-spin-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, #00ff88, #00cc66);
    color: #000000;
    border: none;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.wheel-spin-btn:hover {
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
    transform: translate(-50%, -50%) scale(1.1);
}

.wheel-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid #ff4444;
    z-index: 5;
}

.wheel-disclaimer {
    text-align: center;
    margin-top: 20px;
    color: #888888;
    font-size: 0.9rem;
    font-style: italic;
}

.loyalty-program {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(0, 255, 136, 0.05) 0%, transparent 100%);
}

.loyalty-program h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ffffff, #00ff88);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 50px;
}

.loyalty-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tier-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(0, 0, 0, 0.9));
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.tier-card.featured {
    border-color: #00ff88;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
    transform: scale(1.05);
}

.tier-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #00ff88, #00cc66);
    color: #000000;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tier-card:hover {
    transform: translateY(-10px);
    border-color: #00ff88;
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
}

.tier-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.tier-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #00ff88;
}

.tier-card p {
    color: #cccccc;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.tier-card ul {
    list-style: none;
    text-align: left;
}

.tier-card li {
    margin-bottom: 10px;
    color: #ffffff;
    position: relative;
    padding-left: 25px;
}

.tier-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

.comparison-table {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.comparison-table h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(45deg, #ffffff, #00ff88);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.comparison-grid {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: linear-gradient(45deg, #00ff88, #00cc66);
    color: #000000;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-header div {
    padding: 20px;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.comparison-header div:last-child {
    border-right: none;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row div {
    padding: 20px;
    text-align: center;
    border-right: 1px solid rgba(0, 255, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-row div:first-child {
    text-align: left;
    font-weight: 600;
}

.comparison-row div:last-child {
    border-right: none;
}

.echobloom-col {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    font-weight: 600;
}

.benefits {
    padding: 80px 0;
}

.benefits h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #ffffff, #00ff88);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.benefit-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(0, 0, 0, 0.9));
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.05), transparent);
    transition: left 0.6s ease;
}

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

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

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
    filter: grayscale(100%) brightness(2);
}

.benefit-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #00ff88;
    font-weight: 600;
}

.benefit-card p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1rem;
}

.news-carousel {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 136, 0.05) 50%, transparent 100%);
}

.news-carousel h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(45deg, #ffffff, #00ff88);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.news-card {
    flex: 0 0 300px;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(0, 0, 0, 0.9));
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.news-card:hover {
    border-color: #00ff88;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.news-date {
    color: #00ff88;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.news-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.news-card p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.news-link {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 255, 136, 0.9);
    color: #000000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.age-verification-banner {
    padding: 60px 0;
    background: linear-gradient(45deg, rgba(255, 68, 68, 0.1), rgba(0, 0, 0, 0.2));
    border-top: 2px solid #ff4444;
    border-bottom: 2px solid #ff4444;
}

.verification-content {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
    text-align: center;
}

.verification-icon {
    font-size: 4rem;
    filter: grayscale(100%) brightness(2);
}

.verification-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ff4444;
}

.verification-text p {
    color: #cccccc;
    font-size: 1.1rem;
}

.btn-verification {
    background: linear-gradient(45deg, #ff4444, #cc3333);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-verification:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.4);
}

.footer {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), #000000);
    border-top: 2px solid #00ff88;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-section h4 {
    color: #00ff88;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-disclaimers p {
    font-size: 0.9rem;
    background: rgba(0, 255, 136, 0.1);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #00ff88;
}

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

.footer-section li {
    margin-bottom: 10px;
}

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

.footer-section a:hover {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.support-links a {
    color: #00ff88;
    font-weight: 500;
}

.support-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 255, 136, 0.3);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-badges {
    display: flex;
    gap: 15px;
}

.footer-badge {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(45deg, #000000, #1a1a1a);
    border-top: 2px solid #00ff88;
    padding: 20px;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    color: #cccccc;
    flex: 1;
}

.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

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

.modal-content {
    background: linear-gradient(145deg, #1a1a1a, #000000);
    border: 2px solid #00ff88;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalAppear 0.3s ease;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #cccccc;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ff4444;
}

.modal-content h2 {
    color: #00ff88;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.8rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-form input {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.auth-form input:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
    cursor: pointer;
}

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

.checkbox-label a {
    color: #00ff88;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.auth-switch {
    text-align: center;
    margin-top: 20px;
    color: #cccccc;
}

.auth-switch a {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
}

.auth-switch a:hover {
    text-decoration: underline;
}

.auth-disclaimer {
    font-size: 0.9rem;
    color: #888888;
    text-align: center;
    margin-top: 15px;
    font-style: italic;
}

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

.legal-page {
    padding: 40px 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    padding: 50px;
    border: 2px solid rgba(0, 255, 136, 0.2);
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #00ff88);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #888888;
    margin-bottom: 40px;
    font-style: italic;
}

.disclaimer-box {
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
}

.disclaimer-box h3,
.disclaimer-box h4 {
    color: #00ff88;
    margin-bottom: 15px;
}

.disclaimer-box p,
.disclaimer-box ul {
    color: #ffffff;
    margin-bottom: 10px;
}

.disclaimer-box li {
    margin-bottom: 8px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: #00ff88;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(0, 255, 136, 0.3);
    padding-bottom: 10px;
}

.legal-section h3,
.legal-section h4 {
    color: #ffffff;
    margin: 20px 0 15px;
}

.legal-section p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-section ul,
.legal-section ol {
    color: #cccccc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-section li strong {
    color: #ffffff;
}

.legal-section a {
    color: #00ff88;
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-section a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.disclaimer-section {
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid rgba(255, 68, 68, 0.3);
    border-radius: 15px;
    padding: 30px;
}

.disclaimer-section h2 {
    color: #ff4444;
    border-bottom-color: rgba(255, 68, 68, 0.3);
}

.support-section {
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    padding: 30px;
}

.support-organizations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.support-org {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.support-org h4 {
    color: #00ff88;
    margin-bottom: 10px;
}

.support-org p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.support-link {
    background: linear-gradient(45deg, #00ff88, #00cc66);
    color: #000000;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.support-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.crisis-support {
    background: rgba(255, 68, 68, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
}

.crisis-support h4 {
    color: #ff4444;
    margin-bottom: 15px;
}

.crisis-support ul {
    list-style: none;
    padding-left: 0;
}

.crisis-support li {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 4px solid #ff4444;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.guideline-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.guideline-card:hover {
    border-color: #00ff88;
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.2);
}

.guideline-card h4 {
    color: #00ff88;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.tools-list {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.tool-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid #00ff88;
}

.tool-item h4 {
    color: #00ff88;
    margin-bottom: 10px;
}

.warning-signs {
    background: rgba(255, 68, 68, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    border: 2px solid rgba(255, 68, 68, 0.2);
}

.warning-signs h4 {
    color: #ff4444;
    margin-bottom: 15px;
}

.warning-signs ul {
    color: #ffffff;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .wheel-container {
        width: 300px;
        height: 300px;
    }

    .verification-content {
        flex-direction: column;
        text-align: center;
    }

    .comparison-grid {
        font-size: 0.9rem;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-header div,
    .comparison-row div {
        border-right: none;
        border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .age-verification-buttons {
        flex-direction: column;
    }

    .legal-content {
        padding: 30px 20px;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .support-organizations {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .hero-disclaimers {
        justify-content: center;
    }

    .wheel-container {
        width: 250px;
        height: 250px;
    }

    .loyalty-program h2,
    .comparison-table h2,
    .benefits h2,
    .news-carousel h2 {
        font-size: 2rem;
    }

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

    .news-card {
        flex: 0 0 280px;
    }

    .carousel-btn {
        display: none;
    }
}

/* Mandatory Disclaimer Styles */
.mandatory-disclaimer {
    background: rgba(255, 69, 0, 0.1);
    border: 2px solid #ff4500;
    border-radius: 12px;
    padding: 30px 20px;
    margin: 40px 0;
}

.mandatory-disclaimer .disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.mandatory-disclaimer p {
    font-size: 1rem;
    line-height: 1.8;
    color: #ffffff;
    text-align: center;
}

.mandatory-disclaimer strong {
    color: #ff6b35;
    font-weight: 700;
}

/* Age Disclaimer in Modal */
.age-disclaimer {
    margin-top: 20px;
    font-size: 0.875rem;
    color: #cccccc;
    text-align: center;
    line-height: 1.6;
}

/* Modal Required (cannot be closed without action) */
.modal-required .modal-close {
    display: none;
}

.modal-required {
    pointer-events: auto;
}

/* Responsive Disclaimer */
@media (max-width: 768px) {
    .mandatory-disclaimer {
        padding: 20px 15px;
        margin: 30px 0;
    }

    .mandatory-disclaimer p {
        font-size: 0.9rem;
    }
}

/* Responsible Play Link Highlight */
.responsible-play-link {
    background: rgba(0, 255, 136, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    font-weight: 600;
}

.responsible-play-link:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

/* Contact Page Styles */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-card {
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #00ff88;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-card h3 {
    color: #00ff88;
    margin-bottom: 15px;
}

.contact-card p {
    margin: 10px 0;
}

.contact-card a {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

.response-time {
    font-size: 0.9rem;
    color: #888;
    margin-top: 15px;
    font-style: italic;
}

/* Contact Form Styles */
.contact-form {
    max-width: 700px;
    margin: 30px 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #00ff88;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

.form-group select {
    cursor: pointer;
}

.faq-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.topic-item {
    background: rgba(0, 255, 136, 0.05);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #00ff88;
}

.topic-item h4 {
    color: #00ff88;
    margin-bottom: 10px;
}

.topic-item p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Responsive Contact */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .faq-topics {
        grid-template-columns: 1fr;
    }
}

/* FAQ Page Styles */
.faq-item {
    background: rgba(0, 255, 136, 0.03);
    border-left: 4px solid #00ff88;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(0, 255, 136, 0.08);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

.faq-item h3 {
    color: #00ff88;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.faq-item p {
    line-height: 1.8;
    margin-bottom: 10px;
}

.faq-item ul {
    margin-left: 25px;
    margin-top: 10px;
}

.faq-item ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.faq-item a {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
}

.faq-item a:hover {
    text-decoration: underline;
}

.faq-item strong {
    color: #ff6b35;
    font-weight: 700;
}

/* Game Rules Page Styles */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.rule-card {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 255, 136, 0.02) 100%);
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.rule-card:hover {
    border-color: #00ff88;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
    transform: translateY(-5px);
}

.rule-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.rule-icon {
    font-size: 2.5rem;
}

.rule-card h3 {
    color: #00ff88;
    font-size: 1.5rem;
}

.rule-card p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.rule-card ul {
    margin-left: 20px;
}

.rule-card ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.rules-important {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid #ff6b35;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

.rules-important h4 {
    color: #ff6b35;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.rules-important ul {
    margin-left: 25px;
}

.rules-important ul li {
    margin-bottom: 12px;
    line-height: 1.7;
}

/* Responsive FAQ & Rules */
@media (max-width: 768px) {
    .faq-item {
        padding: 20px;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }

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

    .rule-card {
        padding: 20px;
    }
}

/* Game Page Styles */
.game-page {
    min-height: calc(100vh - 200px);
    padding-top: 80px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

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

.game-header {
    text-align: center;
    margin-bottom: 30px;
}

.game-header h1 {
    font-size: 2.5rem;
    color: #00ff88;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.game-subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.game-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
    border: 3px solid rgba(0, 255, 136, 0.5);
}

.game-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: auto;
}

.game-disclaimer {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid #ff6b35;
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}

.game-disclaimer p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.game-disclaimer strong {
    color: #ff6b35;
}

.game-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.game-controls button {
    min-width: 150px;
}

/* Active nav link */
.nav-menu a.active {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    border-bottom: 2px solid #00ff88;
}

/* Responsive Game Page */
@media (max-width: 1200px) {
    .game-container {
        max-width: 1000px;
    }
}

@media (max-width: 768px) {
    .game-header h1 {
        font-size: 1.8rem;
    }

    .game-subtitle {
        font-size: 0.9rem;
    }

    .game-wrapper {
        border-radius: 12px;
    }

    .game-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .game-controls button {
        width: 100%;
        min-width: unset;
    }

    .game-disclaimer {
        padding: 15px;
    }

    .game-disclaimer p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .game-page {
        padding-top: 70px;
    }

    .game-header h1 {
        font-size: 1.5rem;
    }

    .game-subtitle {
        font-size: 0.85rem;
    }

    .game-wrapper {
        border-width: 2px;
    }
}