:root {
    --gold: #D4AF37;
    --gold-light: #F4D03F;
    --gold-dark: #B8942C;
    --black: #0A0A0A;
    --dark-bg: #1A1A1A;
    --green: #2D5016;
    --green-light: #3A6B1F;
    --text-light: #E8E8E8;
    --text-muted: #999;
}

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

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: var(--black);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Age Verification Modal */
.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.5s ease;
}

.age-verification.hidden {
    display: none;
}

.age-content {
    text-align: center;
    padding: 3rem;
    max-width: 500px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--black) 100%);
    border: 2px solid var(--gold);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.logo-container {
    margin-bottom: 2rem;
}

.logo-container .logo {
    width: 300px;
    height: 300px;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
    }
}

.age-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.age-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.age-form label {
    display: block;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.age-form input[type="date"] {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1.5rem;
    background-color: var(--black);
    border: 1px solid var(--gold-dark);
    border-radius: 5px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Cormorant Garamond', serif;
    transition: all 0.3s ease;
}

.age-form input[type="date"]:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Main Content */
.main-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: filter 0.3s ease;
}

.main-content.blurred {
    filter: blur(15px);
    pointer-events: none;
}

.hero-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.logo-main {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
}

.logo-main img {
    width: 300px;
    height: 300px;
    animation: logoGlow 3s ease-in-out infinite;
}

.main-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 0.3s both;
}

.slogan {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold-light);
    font-style: italic;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.6s both;
}

.slogan-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.9s both;
}

.btn-enter {
    padding: 1rem 3rem;
    font-size: 1.3rem;
    font-family: 'Cinzel', serif;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    color: var(--black);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    animation: fadeInUp 1s ease 1.2s both;
}

.btn-enter:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

/* Footer */
.footer {
    padding: 2rem 1rem;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 26, 0.8) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links .join-link {
    color: var(--gold-light);
    font-weight: 600;
}

/* Social Media */
.social-media {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.social-title {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid var(--gold-dark);
    border-radius: 50%;
    color: var(--gold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: 0;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link svg {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.social-link:hover svg {
    color: var(--black);
    transform: scale(1.1);
}

/* Specific social media hover colors */
.social-link:nth-child(1):hover::before {
    background: linear-gradient(135deg, #E1306C 0%, #C13584 100%); /* Instagram */
}

.social-link:nth-child(2):hover::before {
    background: linear-gradient(135deg, #00f2ea 0%, #ff0050 100%); /* TikTok */
}

.social-link:nth-child(3):hover::before {
    background: linear-gradient(135deg, #1DA1F2 0%, #0d8bd9 100%); /* X/Twitter */
}

.social-link:nth-child(4):hover::before {
    background: linear-gradient(135deg, #1877F2 0%, #0d65d9 100%); /* Facebook */
}

.social-link:nth-child(5):hover::before {
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%); /* YouTube */
}

.social-link:nth-child(6):hover::before {
    background: linear-gradient(135deg, #9146FF 0%, #772ce8 100%); /* Twitch */
}

.social-link:nth-child(7):hover::before {
    background: linear-gradient(135deg, #53FC18 0%, #3dd60f 100%); /* Kick */
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--black) 100%);
    padding: 3rem;
    border: 2px solid var(--gold);
    border-radius: 10px;
    max-width: 450px;
    width: 90%;
    position: relative;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.4);
    animation: slideUp 0.5s ease;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    color: var(--gold-light);
    transform: rotate(90deg);
}

.modal-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-logo img {
    width: 100px;
    height: 100px;
}

.modal-content h2 {
    font-family: 'Cinzel', serif;
    text-align: center;
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.modal-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.login-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--black);
    border: 1px solid var(--gold-dark);
    border-radius: 5px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Cormorant Garamond', serif;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.btn-login {
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
    font-family: 'Cinzel', serif;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    color: var(--black);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

.login-footer {
    text-align: center;
    margin-top: 1.5rem;
}

.login-footer a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.login-footer a:hover {
    color: var(--gold);
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-family: 'Cinzel', serif;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    color: var(--black);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background-color: var(--gold);
    color: var(--black);
}

/* Error Messages */
.error-message {
    color: #ff6b6b;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.95rem;
    display: none;
}

.error-message.show {
    display: block;
    animation: shake 0.5s ease;
}

.success-message {
    color: #4CAF50;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.95rem;
    display: none;
}

.success-message.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Input Validation States */
.form-group input.valid {
    border-color: #4CAF50 !important;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.4) !important;
}

.form-group input.invalid {
    border-color: #ff6b6b !important;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.4) !important;
}

.validation-message {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
    animation: fadeIn 0.3s ease;
}

.validation-message.show {
    display: block;
}

.validation-message.error {
    color: #ff6b6b;
}

.validation-message.success {
    color: #4CAF50;
}

/* Password Recovery Modal */
.recovery-modal {
    max-width: 500px;
}

.recovery-form {
    margin-top: 2rem;
}

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

.radio-option {
    flex: 1;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background-color: var(--black);
    border: 2px solid var(--gold-dark);
    border-radius: 10px;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.radio-icon {
    font-size: 2rem;
}

.radio-option input[type="radio"]:checked + .radio-label {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.radio-label span:last-child {
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Cinzel', serif;
}

.radio-option input[type="radio"]:checked + .radio-label span:last-child {
    color: var(--gold);
}

.hidden {
    display: none !important;
}

/* Warning Message */
.warning-message {
    color: #ffa500;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.95rem;
    display: none;
    animation: pulse 1s ease infinite;
}

.warning-message.show {
    display: block;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Banned Message */
.banned-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.banned-overlay.show {
    display: flex;
}

.banned-content {
    text-align: center;
    padding: 3rem;
    max-width: 500px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--black) 100%);
    border: 2px solid #ff6b6b;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
}

.banned-content h2 {
    color: #ff6b6b;
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.banned-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    
    .slogan {
        font-size: 1.3rem;
    }
    
    .slogan-subtitle {
        font-size: 1rem;
    }
    
    .logo-main img {
        width: 150px;
        height: 150px;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .social-icons {
        gap: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
    
    .age-content {
        padding: 2rem 1.5rem;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .logo-main img {
        width: 120px;
        height: 120px;
    }
    
    .btn-enter {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }
    
    .social-title {
        font-size: 0.95rem;
    }
    
    .social-icons {
        gap: 0.8rem;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
}
