/* 7E77 Casino Website Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #3d0014;
    --primary-red: #990930;
    --gradient-red: linear-gradient(270deg, #cc0a42, #550018);
    --gradient-gold: linear-gradient(180deg, #fbe38c, #ebab51);
    --gold: #f7d462;
    --white: #ffffff;
    --black: #000000;
    --gray: #666666;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--primary-dark);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--white);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--white);
}

ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
    color: var(--white);
}

/* Links */
a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--white);
}

.text-btn {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    display: flex;
    justify-content: center;
    width: max-content;
    align-items: center;
    gap: 5px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(204, 10, 66, 0.3);
    color: var(--white);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--primary-dark);
}

.btn-gold:hover {
    color: var(--primary-dark);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.2rem;
}

/* Header */
header {
    background: var(--primary-dark);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-container {
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 1rem;
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--gradient-red);
    color: var(--white);
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.auth-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-dark);
    z-index: 1001;
    padding: 2rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav {
    list-style: none;
    margin-top: 4rem;
}

.mobile-nav li {
    margin: 1rem 0;
}

.mobile-nav a {
    color: var(--white);
    font-size: 1.2rem;
    display: block;
    padding: 1rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: var(--gradient-red);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(61, 0, 20, 0.7);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 4rem 0;
}

.section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section:nth-child(even) {
    background: rgba(153, 9, 48, 0.1);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--gold);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.content-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
}

.content-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.content-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Slots Grid */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.slot-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.slot-card:hover {
    transform: translateY(-5px);
}

.slot-card img {
    width: 100%;
    object-fit: cover;
}

.slot-card-content {
    padding: 1.5rem;
}

.slot-card h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.slot-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* FAQ Section */
.faq-section {
    background: rgba(153, 9, 48, 0.1);
    padding: 3rem 0;
}

.faq-item {
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-item h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: var(--primary-dark);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1500px) {
    nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu nav {
        display: block;
    }

    .mobile-menu li a {
        text-align: center;
    }
    
    .auth-buttons .btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
}

@media (max-width:524px) {
    .auth-buttons .btn span {
        display: none;
    }

    .auth-buttons .text-btn span {
        display: none;
    }

    .auth-buttons {
        gap:10px;
    }

    .auth-buttons .text-btn i {
        font-size: 1.2rem;
    }

    .logo {
        height: 35px;
        margin-left: -20px;
    }
    
    .auth-buttons .btn i {
        font-size: 1.2rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-video {
        height: 100%;
    }


    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .slots-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--gold);
}

.bg-transparent {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.p-2 {
    padding: 2rem;
} 

/* App Download Banner */
.app-download-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-red) 100%);
    border-top: 2px solid var(--gold);
    padding: 15px 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    max-width: 100%;
}

.app-download-banner.show {
    transform: translateY(0);
}

.app-download-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.app-download-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.app-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(247, 212, 98, 0.3);
}

.app-icon i {
    font-size: 24px;
    color: var(--primary-dark);
}

.app-text {
    flex: 1;
}

.app-text h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-weight: bold;
}

.app-text p {
    color: var(--white);
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.app-download-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 36px;
}

.app-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 212, 98, 0.4);
    color: var(--primary-dark);
}

.app-store-btn i {
    font-size: 16px;
}

.banner-close-btn {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.banner-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .app-download-banner {
        padding: 12px 15px;
    }
    
    .app-download-banner-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .app-download-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .app-download-actions {
        width: 100%;
        justify-content: center;
    }
    
    .app-store-btn {
        flex: 1;
        justify-content: center;
        max-width: 200px;
    }
    
    .banner-close-btn {
        position: absolute;
        top: 8px;
        right: 8px;
    }
}

@media (max-width: 480px) {
    .app-download-banner {
        padding: 10px 12px;
    }
    
    .app-icon {
        width: 40px;
        height: 40px;
    }
    
    .app-icon i {
        font-size: 20px;
    }
    
    .app-text h4 {
        font-size: 1rem;
    }
    
    .app-text p {
        font-size: 0.8rem;
    }
    
    .app-store-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-height: 32px;
    }
}

/* Animation for banner appearance */
@keyframes slideUpBanner {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.app-download-banner.show {
    animation: slideUpBanner 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
} 