/* MOBILE CASINO - BRIGHT GRADIENT THEME */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* HEADER */
.main-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    flex-shrink: 0;
}

.logo:hover {
    text-decoration: none;
}

.logo-icon {
    font-size: 48px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo-sub {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
    transition: all 0.3s;
    text-decoration: none;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
}

.nav-link i {
    font-size: 16px;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-primary {
    padding: 12px 28px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 87, 108, 0.6);
    text-decoration: none;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* MOBILE NAV */
.mobile-nav {
    position: fixed;
    top: 75px;
    right: -100%;
    width: 280px;
    max-width: 85vw;
    height: calc(100vh - 75px);
    background: rgba(102, 126, 234, 0.98);
    backdrop-filter: blur(20px);
    padding: 25px 15px;
    transition: right 0.3s;
    z-index: 999;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    display: block;
    padding: 14px 18px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
    margin-bottom: 8px;
    transition: all 0.2s;
    text-decoration: none;
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    text-decoration: none;
}

/* HERO SECTION */
.hero-section {
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, #f5576c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-devices {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.device-badge {
    padding: 20px 35px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    transition: all 0.3s;
}

.device-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.device-badge i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.device-badge span {
    font-size: 18px;
    font-weight: 700;
}

/* CONTENT SECTION */
.content-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.05);
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
}

/* CASINO GRID */
.casinos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.casino-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s;
    text-decoration: none;
    color: #fff;
}

.casino-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: rgba(245, 87, 108, 0.5);
    text-decoration: none;
}

.casino-logo {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.casino-logo img {
    max-width: 70px;
    max-height: 70px;
    object-fit: contain;
}

.casino-name {
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
}

.casino-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
    color: #fbbf24;
    font-size: 18px;
}

.casino-rating i {
    font-size: 18px;
}

.platform-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.platform-badge {
    padding: 8px 15px;
    background: rgba(245, 87, 108, 0.2);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
}

.casino-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.feature-item i {
    color: #4ade80;
    font-size: 16px;
}

.btn-visit {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: #fff;
    text-align: center;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-visit:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(245, 87, 108, 0.4);
    text-decoration: none;
}

/* FOOTER */
.main-footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    font-size: 36px;
}

.footer-logo .logo-main {
    font-size: 24px;
    font-weight: 900;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-badges {
    display: flex;
    gap: 15px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
}

.badge-item i {
    font-size: 20px;
}

.footer-nav h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color 0.2s;
    text-decoration: none;
}

.footer-nav a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-info h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-disclaimer {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* PAGE STYLES */
.page-hero {
    padding: 60px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
}

.page-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}

.page-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .casinos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 38px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .hero-devices {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .device-badge {
        min-width: 140px;
        padding: 15px 25px;
    }
    
    .casinos-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .page-desc {
        font-size: 16px;
    }
    
    .logo-main {
        font-size: 22px;
    }
    
    .logo-sub {
        font-size: 10px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .content-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-devices {
        grid-template-columns: 1fr 1fr;
    }
    
    .device-badge {
        min-width: auto;
        width: 100%;
        padding: 15px 20px;
    }
    
    .device-badge i {
        font-size: 36px;
    }
    
    .device-badge span {
        font-size: 16px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .casino-name {
        font-size: 18px;
    }
    
    .logo-main {
        font-size: 18px;
    }
    
    .logo-icon {
        font-size: 36px;
    }
    
    .casino-rating {
        gap: 4px;
        font-size: 16px;
    }
    
    .casino-rating i {
        font-size: 16px;
    }
}

