/* K85 Casino Website Styles */
:root {
    --primary-purple: #372280;
    --primary-red: #D44159;
    --dark-purple: #36277D;
    --gradient-bg: linear-gradient(135deg, #625598, #413284);
    --text-white: #ffffff;
    --text-light: #f1f1f1;
    --text-dark: #333333;
    --gold: #FFD700;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.4);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--gradient-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(55, 34, 128, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-red);
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    margin: 0 auto;
}

.logo {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    background: rgba(212, 65, 89, 0.2);
    transform: translateY(-2px);
}

.nav-link.active {
    background: var(--primary-red);
    color: var(--text-white);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    font-size: 14px;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--text-white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: #b8364a;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: linear-gradient(-45deg,#625598, #413284), #36277D;
    color: var(--text-white);
}

.btn-secondary:hover {
    transform: translateY(-3px);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(55, 34, 128, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--primary-red);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
    z-index: 999;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav {
    display: flex !important;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
}

.mobile-nav .nav-link {
    display: block;
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.mobile-nav .nav-link:hover {
    background: rgba(212, 65, 89, 0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(55, 34, 128, 0.7);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 80px 20px 20px;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero .btn {
    font-size: 18px;
    padding: 15px 35px;
    margin: 10px;
}

/* Main Content */
.main-content {
    background: var(--primary-purple);
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.section {
    padding: 80px 0;
}

.section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-white);
    margin-bottom: 30px;
    text-align: center;
}

.section h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin: 30px 0 15px;
}

.section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.section a:not(.btn) {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.section a:not(.btn):hover {
    color: var(--gold);
    text-decoration: underline;
}

/* Game Cards */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.game-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-red);
}

.game-card img {
    width: 100%;
    object-fit: cover;
}

.game-card-content {
    padding: 25px;
}

.game-card h3 {
    color: var(--text-white);
    margin-bottom: 15px;
    margin-top: 0;
}

.game-card p {
    color: var(--text-light);
}

/* Features Table */
.features-table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    margin: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.features-table th,
.features-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.features-table th {
    background: rgba(212, 65, 89, 0.8);
    color: var(--text-white);
    font-weight: 600;
}

.features-table td {
    color: var(--text-light);
}

.features-table .check {
    color: #28a745;
    font-size: 18px;
    font-weight: bold;
}

/* FAQ Section */
.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--primary-red);
}

.faq-item h4 {
    color: var(--text-white);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-light);
}

/* Pros/Cons Lists */
.pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.pros, .cons {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    color: var(--text-light);
}

.pros {
    border-left: 4px solid #28a745;
}

.cons {
    border-left: 4px solid #dc3545;
}

.pros h4 {
    color: #28a745;
    margin-bottom: 20px;
}

.cons h4 {
    color: #dc3545;
    margin-bottom: 20px;
}

.pros ul, .cons ul {
    list-style: none;
    padding-left: 0;
}

.pros li, .cons li {
    color: var(--text-light);
    margin-bottom: 8px;
}

.pros li::before {
    content: "✅";
    margin-right: 10px;
}

.cons li::before {
    content: "❌";
    margin-right: 10px;
}

/* Footer */
.footer {
    background: var(--primary-purple);
    color: var(--text-white);
    padding: 50px 0 30px;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--gold);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.payment-icon {
    width: 50px;
    height: 30px;
    background: var(--text-white);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple);
    font-weight: bold;
    font-size: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 574px) {
    .cta-buttons {
        width: 100%;
        justify-content: center;
        order: 3;
        margin-top: 10px;
    }

    .header-container {
        flex-wrap: wrap;
    }
}

@media (max-width: 1560px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .mobile-menu.active {
        animation: slideDown 0.3s ease-out;
    }
}

@media (max-width: 768px) {
    
    .hero {
        height: 80vh;
    }
    
    .hero-content {
        padding: 180px 15px 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .game-card-content {
        padding: 20px;
    }
    
    .table-container {
        margin: 20px -15px;
        padding: 0 15px;
    }
    
    /* Button groups in main content */
    .text-center .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }
    
    .section .btn + .btn {
        margin-top: 15px;
        margin-left: 0;
    }
    
    /* CTA button groups */
    .hero .btn {
        display: block;
        width: 80%;
        margin: 10px auto;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .payment-methods {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero .btn {
        font-size: 16px;
        padding: 12px 25px;
        margin: 5px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .pros, .cons {
        padding: 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--text-white);
    animation: spin 0.8s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.p-20 { padding: 20px; }
.hidden { display: none; }
.visible { display: block; } 

.section ul, .section ol {
    color: var(--text-light);
    margin-bottom: 20px;
    padding-left: 20px;
}

.section li {
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.6;
}

.section strong {
    color: var(--text-white);
}

.section pre {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 15px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-red);
    margin: 20px 0;
    text-wrap: wrap;
}

/* Table Container */
.table-container {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
} 