/**
 * y77.click - Main Stylesheet
 * All classes prefixed with "v3c1-" for namespace isolation
 * @version 1.0.0
 */

/* CSS Variables */
:root {
    --v3c1-primary: #228B22;
    --v3c1-secondary: #4169E1;
    --v3c1-accent: #00FF00;
    --v3c1-success: #3CB371;
    --v3c1-bg-dark: #333333;
    --v3c1-bg-darker: #1a1a1a;
    --v3c1-text-light: #ffffff;
    --v3c1-text-gray: #808080;
    --v3c1-border-radius: 8px;
    --v3c1-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    --v3c1-transition: all 0.3s ease;
}

/* Base Styles */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--v3c1-bg-dark);
    color: var(--v3c1-text-light);
    line-height: 1.5rem;
    font-size: 1.4rem;
    -webkit-font-smoothing: antialiased;
}

/* Container */
.v3c1-container {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

.v3c1-wrapper {
    padding-top: 70px;
    padding-bottom: 2rem;
}

/* Header */
.v3c1-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--v3c1-bg-darker) 0%, var(--v3c1-bg-dark) 100%);
    padding: 0.8rem 0;
    box-shadow: var(--v3c1-shadow);
}

.v3c1-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.v3c1-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.v3c1-logo img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.v3c1-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--v3c1-accent);
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.v3c1-header-actions {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.v3c1-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: var(--v3c1-border-radius);
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--v3c1-transition);
    text-decoration: none;
    min-height: 36px;
    min-width: 70px;
}

.v3c1-btn-login {
    background: transparent;
    border: 2px solid var(--v3c1-primary);
    color: var(--v3c1-primary);
}

.v3c1-btn-login:hover {
    background: var(--v3c1-primary);
    color: var(--v3c1-text-light);
}

.v3c1-btn-register {
    background: linear-gradient(135deg, var(--v3c1-primary) 0%, var(--v3c1-success) 100%);
    color: var(--v3c1-text-light);
}

.v3c1-btn-register:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(34, 139, 34, 0.5);
}

.v3c1-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--v3c1-text-light);
    font-size: 2.4rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Menu */
.v3c1-mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--v3c1-bg-darker);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 2rem;
}

.v3c1-mobile-menu.v3c1-active {
    right: 0;
}

.v3c1-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--v3c1-text-gray);
}

.v3c1-mobile-menu-close {
    background: transparent;
    border: none;
    color: var(--v3c1-text-light);
    font-size: 2.4rem;
    cursor: pointer;
}

.v3c1-mobile-menu-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v3c1-mobile-menu-nav li {
    margin-bottom: 0.5rem;
}

.v3c1-mobile-menu-nav a {
    display: block;
    padding: 1rem;
    color: var(--v3c1-text-light);
    text-decoration: none;
    border-radius: var(--v3c1-border-radius);
    transition: var(--v3c1-transition);
}

.v3c1-mobile-menu-nav a:hover {
    background: var(--v3c1-primary);
    color: var(--v3c1-text-light);
}

.v3c1-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--v3c1-transition);
}

.v3c1-overlay.v3c1-active {
    opacity: 1;
    visibility: visible;
}

/* Carousel */
.v3c1-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--v3c1-border-radius);
    margin-bottom: 2rem;
}

.v3c1-slides {
    display: flex;
    width: 300%;
    transition: transform 0.5s ease;
}

.v3c1-slide {
    width: 33.333%;
    flex-shrink: 0;
    position: relative;
    display: none;
}

.v3c1-slide.v3c1-active {
    display: block;
}

.v3c1-slide img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.v3c1-carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.v3c1-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.v3c1-carousel-dot.v3c1-active {
    background: var(--v3c1-accent);
}

/* Section Styles */
.v3c1-section {
    margin-bottom: 2.5rem;
}

.v3c1-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--v3c1-accent);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.v3c1-section-title i {
    font-size: 2rem;
}

/* Game Grid */
.v3c1-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.v3c1-game-item {
    text-align: center;
    cursor: pointer;
    transition: var(--v3c1-transition);
}

.v3c1-game-item:hover {
    transform: translateY(-3px);
}

.v3c1-game-item img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--v3c1-border-radius);
    margin-bottom: 0.5rem;
    box-shadow: var(--v3c1-shadow);
}

.v3c1-game-name {
    font-size: 1.1rem;
    color: var(--v3c1-text-light);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Category Title */
.v3c1-category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--v3c1-success);
    margin: 2rem 0 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--v3c1-primary);
}

/* Features Grid */
.v3c1-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.v3c1-feature-card {
    background: linear-gradient(135deg, var(--v3c1-bg-darker) 0%, rgba(34, 139, 34, 0.2) 100%);
    border: 1px solid rgba(34, 139, 34, 0.3);
    border-radius: var(--v3c1-border-radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--v3c1-transition);
}

.v3c1-feature-card:hover {
    border-color: var(--v3c1-primary);
    transform: scale(1.02);
}

.v3c1-feature-icon {
    font-size: 2.5rem;
    color: var(--v3c1-accent);
    margin-bottom: 0.8rem;
}

.v3c1-feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.v3c1-feature-text {
    font-size: 1.2rem;
    color: var(--v3c1-text-gray);
}

/* Promo Cards */
.v3c1-promo-card {
    background: linear-gradient(135deg, var(--v3c1-bg-darker) 0%, var(--v3c1-bg-dark) 100%);
    border-radius: var(--v3c1-border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(65, 105, 225, 0.3);
}

.v3c1-promo-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--v3c1-secondary);
    margin-bottom: 0.8rem;
}

.v3c1-promo-text {
    font-size: 1.3rem;
    color: var(--v3c1-text-gray);
    margin-bottom: 1rem;
}

/* CTA Button */
.v3c1-cta {
    display: block;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--v3c1-primary) 0%, var(--v3c1-success) 100%);
    color: var(--v3c1-text-light);
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: var(--v3c1-border-radius);
    text-decoration: none;
    margin: 2rem 0;
    transition: var(--v3c1-transition);
    box-shadow: var(--v3c1-shadow);
}

.v3c1-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
}

/* Testimonials */
.v3c1-testimonials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.v3c1-testimonial {
    background: var(--v3c1-bg-darker);
    border-radius: var(--v3c1-border-radius);
    padding: 1.5rem;
    border-left: 3px solid var(--v3c1-primary);
}

.v3c1-testimonial-text {
    font-size: 1.3rem;
    color: var(--v3c1-text-light);
    margin-bottom: 0.8rem;
    font-style: italic;
}

.v3c1-testimonial-author {
    font-size: 1.2rem;
    color: var(--v3c1-success);
    font-weight: 600;
}

/* Payment Methods */
.v3c1-payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.v3c1-payment-item {
    background: var(--v3c1-bg-darker);
    padding: 1rem 1.5rem;
    border-radius: var(--v3c1-border-radius);
    font-size: 1.2rem;
    color: var(--v3c1-text-light);
    border: 1px solid var(--v3c1-text-gray);
}

/* Footer */
.v3c1-footer {
    background: var(--v3c1-bg-darker);
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(34, 139, 34, 0.3);
}

.v3c1-footer-content {
    text-align: center;
}

.v3c1-footer-desc {
    font-size: 1.3rem;
    color: var(--v3c1-text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8rem;
}

.v3c1-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.v3c1-footer-link {
    color: var(--v3c1-primary);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--v3c1-transition);
}

.v3c1-footer-link:hover {
    color: var(--v3c1-accent);
}

.v3c1-footer-promos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.v3c1-footer-promo-btn {
    background: var(--v3c1-primary);
    color: var(--v3c1-text-light);
    padding: 0.6rem 1.2rem;
    border-radius: var(--v3c1-border-radius);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: var(--v3c1-transition);
}

.v3c1-footer-promo-btn:hover {
    background: var(--v3c1-success);
    transform: scale(1.05);
}

.v3c1-copyright {
    font-size: 1.2rem;
    color: var(--v3c1-text-gray);
}

/* Bottom Navigation */
.v3c1-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: linear-gradient(180deg, var(--v3c1-bg-dark) 0%, var(--v3c1-bg-darker) 100%);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(34, 139, 34, 0.3);
}

.v3c1-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    text-decoration: none;
    color: var(--v3c1-text-gray);
    transition: var(--v3c1-transition);
    cursor: pointer;
}

.v3c1-nav-item:hover,
.v3c1-nav-item.v3c1-active {
    color: var(--v3c1-accent);
    transform: scale(1.1);
}

.v3c1-nav-item i,
.v3c1-nav-item .material-icons {
    font-size: 24px;
    margin-bottom: 2px;
}

.v3c1-nav-item span {
    font-size: 10px;
    font-weight: 500;
}

/* Utility Classes */
.v3c1-text-center { text-align: center; }
.v3c1-text-left { text-align: left; }
.v3c1-mb-1 { margin-bottom: 1rem; }
.v3c1-mb-2 { margin-bottom: 2rem; }
.v3c1-mt-1 { margin-top: 1rem; }
.v3c1-mt-2 { margin-top: 2rem; }

/* FAQ Styles */
.v3c1-faq-item {
    background: var(--v3c1-bg-darker);
    border-radius: var(--v3c1-border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.v3c1-faq-question {
    padding: 1.2rem;
    font-weight: 600;
    color: var(--v3c1-accent);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.v3c1-faq-answer {
    padding: 0 1.2rem 1.2rem;
    color: var(--v3c1-text-gray);
    font-size: 1.3rem;
}

/* Table Styles */
.v3c1-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.v3c1-table th,
.v3c1-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid var(--v3c1-text-gray);
}

.v3c1-table th {
    background: var(--v3c1-bg-darker);
    color: var(--v3c1-accent);
    font-weight: 600;
}

/* Winners List */
.v3c1-winners {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.v3c1-winner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--v3c1-bg-darker);
    padding: 1rem;
    border-radius: var(--v3c1-border-radius);
}

.v3c1-winner-name {
    font-weight: 600;
    color: var(--v3c1-text-light);
}

.v3c1-winner-amount {
    color: var(--v3c1-accent);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 430px) {
    .v3c1-wrapper {
        padding-bottom: 80px;
    }
}

@media (min-width: 431px) and (max-width: 768px) {
    .v3c1-container {
        max-width: 100%;
        padding: 0 2rem;
    }
}

@media (min-width: 769px) {
    .v3c1-container {
        max-width: 768px;
    }

    .v3c1-bottom-nav {
        display: none;
    }

    .v3c1-wrapper {
        padding-bottom: 2rem;
    }

    .v3c1-game-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .v3c1-features {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Animation */
@keyframes v3c1-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.v3c1-pulse {
    animation: v3c1-pulse 2s infinite;
}

/* Body menu open state */
body.v3c1-menu-open {
    overflow: hidden;
}
