/* minibet-click Theme CSS with w1c3a- prefix */

:root {
    --primary-color: #87CEFA;
    --secondary-color: #7CFC00;
    --accent-color: #98FB98;
    --light-color: #AFEEEE;
    --dark-color: #1C2833;
    --text-primary: #1C2833;
    --text-secondary: #5D6D7E;
    --text-light: #FFFFFF;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-dark: #1C2833;
    --border-color: #E5E8E8;
    --shadow: 0 2px 10px rgba(28, 40, 51, 0.1);
    --shadow-hover: 0 5px 20px rgba(28, 40, 51, 0.15);
    --gradient-primary: linear-gradient(135deg, #87CEFA 0%, #7CFC00 100%);
    --gradient-secondary: linear-gradient(135deg, #98FB98 0%, #AFEEEE 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

/* Container */
.w1c3a-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.w1c3a-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    padding: 15px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.w1c3a-header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-hover);
}

.w1c3a-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.w1c3a-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.w1c3a-logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 8px;
}

.w1c3a-header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.w1c3a-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.w1c3a-btn-primary {
    background: var(--dark-color);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(28, 40, 51, 0.3);
}

.w1c3a-btn-primary:hover {
    background: #2C3E50;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 40, 51, 0.4);
}

.w1c3a-btn-secondary {
    background: var(--text-light);
    color: var(--dark-color);
    border: 2px solid var(--text-light);
}

.w1c3a-btn-secondary:hover {
    background: transparent;
    color: var(--text-light);
}

.w1c3a-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.w1c3a-mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.w1c3a-mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.w1c3a-mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.w1c3a-mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.w1c3a-mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--bg-primary);
    transition: right 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

.w1c3a-mobile-menu.active {
    right: 0;
}

.w1c3a-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
}

.w1c3a-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.w1c3a-mobile-menu-header {
    padding: 20px;
    background: var(--gradient-primary);
    color: var(--text-light);
}

.w1c3a-mobile-menu-content {
    padding: 20px;
}

.w1c3a-mobile-menu-content a {
    display: block;
    padding: 12px 0;
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s ease;
}

.w1c3a-mobile-menu-content a:hover {
    color: var(--primary-color);
}

/* Bottom Navigation */
.w1c3a-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 8px 0;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.w1c3a-bottom-nav-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.w1c3a-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-secondary);
    min-width: 60px;
    padding: 5px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.w1c3a-bottom-nav-item:hover,
.w1c3a-bottom-nav-item.active {
    color: var(--primary-color);
    background: rgba(135, 206, 250, 0.1);
}

.w1c3a-bottom-nav-item i {
    font-size: 24px;
    margin-bottom: 4px;
}

.w1c3a-bottom-nav-item span {
    font-size: 10px;
    font-weight: 500;
}

/* Main Content */
.w1c3a-main {
    padding-top: 80px;
    min-height: 100vh;
}

.w1c3a-main-content {
    padding-bottom: 80px;
}

/* Carousel */
.w1c3a-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.w1c3a-carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.w1c3a-carousel-slide {
    min-width: 100%;
    position: relative;
    display: none;
}

.w1c3a-carousel-slide.active {
    display: block;
}

.w1c3a-carousel-slide img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

.w1c3a-carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--text-light);
    padding: 40px 20px 20px;
}

.w1c3a-carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.w1c3a-carousel-control {
    background: rgba(255,255,255,0.9);
    color: var(--text-primary);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
}

.w1c3a-carousel-control:hover {
    background: var(--text-light);
    transform: scale(1.1);
}

.w1c3a-carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.w1c3a-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.w1c3a-carousel-dot.active {
    background: var(--text-light);
    transform: scale(1.2);
}

/* Game Sections */
.w1c3a-game-section {
    margin-bottom: 60px;
}

.w1c3a-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.w1c3a-section-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 10px;
}

.w1c3a-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.w1c3a-game-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.w1c3a-game-tab {
    padding: 10px 20px;
    background: var(--bg-secondary);
    border: 2px solid transparent;
    border-radius: 25px;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.w1c3a-game-tab:hover,
.w1c3a-game-tab.active {
    background: var(--gradient-primary);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.w1c3a-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.w1c3a-game-item {
    background: var(--bg-primary);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow);
    position: relative;
}

.w1c3a-game-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.w1c3a-game-image {
    position: relative;
    overflow: hidden;
    padding-bottom: 75%;
}

.w1c3a-game-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.w1c3a-game-item:hover .w1c3a-game-image img {
    transform: scale(1.05);
}

.w1c3a-game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.w1c3a-game-item:hover .w1c3a-game-overlay {
    opacity: 1;
}

.w1c3a-play-btn {
    background: var(--gradient-primary);
    color: var(--text-light);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.w1c3a-play-btn:hover {
    transform: scale(1.1);
}

.w1c3a-game-name {
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: var(--text-primary);
    background: var(--bg-secondary);
}

/* Search Bar */
.w1c3a-search-container {
    position: relative;
    margin-bottom: 30px;
}

.w1c3a-search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.w1c3a-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(135, 206, 250, 0.2);
}

.w1c3a-search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

/* Footer */
.w1c3a-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 40px 0 20px;
    margin-top: 60px;
}

.w1c3a-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.w1c3a-footer-section h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.w1c3a-footer-section a {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.w1c3a-footer-section a:hover {
    color: var(--primary-color);
}

.w1c3a-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.w1c3a-partner-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: var(--bg-primary);
    padding: 10px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.w1c3a-partner-logo:hover {
    transform: scale(1.1);
}

.w1c3a-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .w1c3a-main-content {
        padding-bottom: 80px;
    }

    .w1c3a-bottom-nav {
        display: block;
    }

    .w1c3a-mobile-menu-toggle {
        display: flex;
    }

    .w1c3a-header-actions .w1c3a-btn {
        display: none;
    }

    .w1c3a-header-actions {
        gap: 10px;
    }

    .w1c3a-section-title {
        font-size: 24px;
    }

    .w1c3a-games-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }

    .w1c3a-carousel-caption {
        padding: 20px 15px 15px;
    }

    .w1c3a-carousel-control {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 430px) {
    .w1c3a-container {
        padding: 0 15px;
    }

    .w1c3a-games-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }

    .w1c3a-game-name {
        font-size: 12px;
        padding: 10px 5px;
    }

    .w1c3a-section-title {
        font-size: 20px;
    }

    .w1c3a-carousel-slide img {
        max-height: 250px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.w1c3a-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Toast Notification */
.w1c3a-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-color);
    color: var(--text-light);
    padding: 15px 25px;
    border-radius: 30px;
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.w1c3a-toast.show {
    opacity: 1;
}

/* FAQ Styles */
.w1c3a-faq-item {
    background: var(--bg-primary);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.w1c3a-faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s ease;
}

.w1c3a-faq-question:hover {
    background: var(--bg-secondary);
}

.w1c3a-faq-icon {
    transition: transform 0.3s ease;
}

.w1c3a-faq-item.open .w1c3a-faq-icon {
    transform: rotate(180deg);
}

.w1c3a-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.w1c3a-faq-item.open .w1c3a-faq-content {
    padding: 0 20px 20px;
}

/* Utility Classes */
.w1c3a-text-center {
    text-align: center;
}

.w1c3a-mt-20 {
    margin-top: 20px;
}

.w1c3a-mb-20 {
    margin-bottom: 20px;
}

.w1c3a-mt-40 {
    margin-top: 40px;
}

.w1c3a-mb-40 {
    margin-bottom: 40px;
}

.w1c3a-hidden {
    display: none;
}

/* Loading Animation */
.w1c3a-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(135, 206, 250, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}