/* celular-23bet.com - Grid Masonry + Rich Footer Layout */
:root {
    --primary-orange: #FF6B35;
    --primary-yellow: #F7931E;
    --primary-purple: #6A0572;
    --dark-bg: #1C0A00;
    --card-bg: #2D1B12;
    --text-light: #FFF8F0;
    --accent-cyan: #00D9FF;
    --footer-dark: #0D0604;
}

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

body {
    font-family: 'Verdana', 'Geneva', sans-serif;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #3D1F0F 100%);
    color: var(--text-light);
    line-height: 1.7;
}

/* Top Banner - COMPLETELY DIFFERENT */
.top-banner {
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-orange), var(--primary-yellow));
    padding: 10px 20px;
    text-align: center;
    font-size: 0.9em;
    font-weight: bold;
    color: white;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Floating Header */
.floating-header {
    background: rgba(29, 10, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    position: sticky;
    top: 40px;
    z-index: 150;
    border-bottom: 3px solid var(--primary-orange);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-cell {
    width: 150px;
    height: auto;
}

.site-title {
    font-size: 2em;
    color: var(--primary-yellow);
    text-shadow: 2px 2px 8px rgba(247, 147, 30, 0.6);
}

.cta-cell {
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s;
}

.cta-cell:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

/* Grid Navigation */
.grid-nav {
    background: var(--card-bg);
    padding: 20px;
    margin: 20px 0;
}

.nav-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.nav-grid a {
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-orange));
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    transition: all 0.3s;
}

.nav-grid a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(106, 5, 114, 0.5);
}

/* Masonry Grid Content - UNIQUE */
.masonry-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.masonry-card {
    background: var(--card-bg);
    border: 3px solid var(--primary-orange);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.4s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.masonry-card:hover {
    transform: scale(1.03);
    border-color: var(--primary-yellow);
    box-shadow: 0 12px 35px rgba(247, 147, 30, 0.5);
}

.masonry-card h2 {
    font-size: 1.6em;
    color: var(--primary-yellow);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary-orange);
    padding-bottom: 10px;
}

.masonry-card p {
    font-size: 1em;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Image Gallery Grid */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid var(--primary-orange);
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px var(--accent-cyan);
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    padding: 15px 10px 10px;
    font-size: 0.9em;
    font-weight: bold;
    text-align: center;
}

.play-btn-cell {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-orange));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
}

.play-btn-cell:hover {
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-yellow));
    transform: scale(1.05);
}

/* Feature Boxes */
.feature-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-box {
    background: linear-gradient(135deg, var(--card-bg), #4A2818);
    border: 2px solid var(--primary-yellow);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.feature-box h3 {
    color: var(--primary-yellow);
    margin-bottom: 12px;
}

/* Rich Footer - EXTENSIVE */
.rich-footer {
    background: linear-gradient(180deg, var(--footer-dark), #000);
    border-top: 4px solid var(--primary-orange);
    padding: 50px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--primary-yellow);
    font-size: 1.3em;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-orange);
    padding-bottom: 10px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-orange);
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2em;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary-yellow);
    transform: scale(1.15);
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.payment-badge {
    padding: 8px 15px;
    background: var(--card-bg);
    border: 1px solid var(--primary-orange);
    border-radius: 8px;
    font-size: 0.85em;
    color: var(--primary-yellow);
}

.footer-bottom {
    border-top: 1px solid var(--primary-orange);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 0.9em;
    color: #CCC;
}

.footer-certifications {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cert-badge {
    padding: 10px 20px;
    background: var(--primary-purple);
    border-radius: 10px;
    font-size: 0.8em;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .masonry-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
