/* Merhabet Casino - Site 2: Modern Dark Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: #e0e0e0;
    min-height: 100vh;
}

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

/* Header Styles */
header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid #00ffff;
    box-shadow: 0 4px 30px rgba(0, 255, 255, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.logo img {
    width: 45px;
    height: 45px;
    margin-right: 12px;
    border-radius: 50%;
    border: 2px solid #00ffff;
}

nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    transition: width 0.3s ease;
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    transform: translateY(-2px);
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-login {
    background: transparent;
    color: #00ffff;
    border: 2px solid #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.btn-login:hover {
    background: #00ffff;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(0, 255, 255, 0.6);
}

.btn-register {
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 0, 255, 0.4);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 0, 255, 0.7);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #00ffff;
    font-size: 28px;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.hero-banner {
    width: 100%;
    max-width: 900px;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    border: 3px solid #00ffff;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: brightness(1); }
    to { filter: brightness(1.2); }
}

.btn-cta {
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ff00ff);
    background-size: 200% 200%;
    color: #fff;
    padding: 18px 50px;
    font-size: 20px;
    border-radius: 40px;
    text-decoration: none;
    display: inline-block;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 0, 255, 0.5);
    animation: gradient 3s ease infinite;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 0, 255, 0.8);
}

/* Content Section */
.content {
    padding: 70px 0;
    background: rgba(26, 26, 46, 0.3);
    backdrop-filter: blur(10px);
    margin: 50px 0;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.content h1, .content h2, .content h3 {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}

.content h1 { font-size: 36px; }
.content h2 { font-size: 32px; }
.content h3 { font-size: 28px; }

.content ul, .content ol {
    margin: 25px 0;
    padding-left: 35px;
}

.content li {
    margin: 12px 0;
    line-height: 1.7;
}

/* FAQ Section */
.faq {
    padding: 70px 0;
}

.faq h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-item {
    background: rgba(26, 26, 46, 0.5);
    margin: 20px 0;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.faq-item:hover {
    background: rgba(26, 26, 46, 0.7);
    transform: translateX(10px);
    box-shadow: 0 5px 25px rgba(0, 255, 255, 0.3);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: #b0b0b0;
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 500px;
}

.faq-toggle {
    transition: transform 0.4s ease;
    color: #00ffff;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* Footer */
footer {
    background: rgba(10, 10, 10, 0.95);
    padding: 50px 0 25px;
    margin-top: 80px;
    border-top: 2px solid #00ffff;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 35px;
    height: 35px;
    margin-right: 12px;
    border-radius: 50%;
    border: 2px solid #00ffff;
}

.footer-column h3 {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-column a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 2.5;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.footer-column a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 25px;
        box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
        border-top: 2px solid #00ffff;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .auth-buttons {
        display: none;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-banner {
        height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Add mobile floating buttons */
    .mobile-fab {
        position: fixed;
        bottom: 25px;
        right: 25px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 1001;
    }
    
    .mobile-fab .btn {
        padding: 15px 25px;
        border-radius: 25px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating CTA Button for Mobile */
@media (max-width: 768px) {
    .floating-cta {
        position: fixed;
        bottom: 100px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        animation: float 3s ease-in-out infinite;
    }
    
    @keyframes float {
        0%, 100% {
            transform: translateX(-50%) translateY(0);
        }
        50% {
            transform: translateX(-50%) translateY(-10px);
        }
    }
}