/**
 * spin ph Core CSS Module
 * All classes use prefix "vf10-" for namespace isolation
 * @version 1.0.0
 */

/* CSS Variables */
:root {
    --vf10-bg-dark: #1B263B;
    --vf10-bg-primary: #006400;
    --vf10-bg-secondary: #228B22;
    --vf10-accent: #3CB371;
    --vf10-text-light: #DEE2E6;
    --vf10-text-silver: #C0C0C0;
    --vf10-border: rgba(222, 226, 230, 0.2);
    --vf10-shadow: rgba(0, 0, 0, 0.3);
    --vf10-gradient: linear-gradient(135deg, #1B263B 0%, #006400 100%);
}

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--vf10-bg-dark);
    color: var(--vf10-text-light);
    line-height: 1.5rem;
    min-height: 100vh;
}

a {
    color: var(--vf10-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--vf10-text-light);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.vf10-container {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.vf10-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--vf10-bg-dark) 0%, rgba(27, 38, 59, 0.95) 100%);
    border-bottom: 1px solid var(--vf10-border);
    padding: 1rem 0;
}

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

.vf10-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.vf10-logo img {
    width: 32px;
    height: 32px;
}

.vf10-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--vf10-accent);
    letter-spacing: 0.5px;
}

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

.vf10-btn {
    padding: 0.8rem 1.6rem;
    border-radius: 2rem;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.vf10-btn-primary {
    background: var(--vf10-bg-secondary);
    color: var(--vf10-text-light);
}

.vf10-btn-primary:hover {
    background: var(--vf10-accent);
    transform: scale(1.05);
}

.vf10-btn-secondary {
    background: transparent;
    color: var(--vf10-accent);
    border: 2px solid var(--vf10-accent);
}

.vf10-btn-secondary:hover {
    background: var(--vf10-accent);
    color: var(--vf10-bg-dark);
}

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

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

.vf10-menu-active {
    right: 0;
}

.vf10-mobile-menu ul {
    list-style: none;
}

.vf10-mobile-menu li {
    margin-bottom: 1.5rem;
}

.vf10-mobile-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--vf10-text-light);
    font-size: 1.5rem;
    border-radius: 0.8rem;
    transition: all 0.3s ease;
}

.vf10-mobile-menu a:hover {
    background: var(--vf10-bg-secondary);
    color: var(--vf10-text-light);
}

.vf10-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Main Content */
main {
    padding-top: 7rem;
}

@media (max-width: 768px) {
    main {
        padding-bottom: 8rem;
    }
}

/* Hero/Slider Section */
.vf10-hero {
    position: relative;
    overflow: hidden;
    height: 22rem;
    margin-bottom: 2rem;
}

.vf10-slides {
    position: relative;
    height: 100%;
}

.vf10-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    cursor: pointer;
}

.vf10-slide-active {
    opacity: 1;
}

.vf10-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section Styles */
.vf10-section {
    padding: 2rem 0;
    margin-bottom: 1.5rem;
}

.vf10-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--vf10-accent);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--vf10-bg-secondary);
}

.vf10-section-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--vf10-text-silver);
    margin-bottom: 1rem;
}

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

.vf10-game-card {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.vf10-game-card:hover {
    transform: translateY(-3px);
}

.vf10-game-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 0.8rem;
    margin-bottom: 0.5rem;
    border: 2px solid var(--vf10-border);
    transition: border-color 0.3s ease;
}

.vf10-game-card:hover img {
    border-color: var(--vf10-accent);
}

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

/* Category Badge */
.vf10-category-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--vf10-bg-secondary);
    color: var(--vf10-text-light);
    border-radius: 2rem;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Content Card */
.vf10-card {
    background: rgba(0, 100, 0, 0.2);
    border: 1px solid var(--vf10-border);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.vf10-card-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--vf10-accent);
    margin-bottom: 1rem;
}

.vf10-card-content {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--vf10-text-silver);
}

/* Promo Button */
.vf10-promo-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--vf10-bg-secondary) 0%, var(--vf10-accent) 100%);
    color: var(--vf10-text-light);
    border-radius: 3rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px var(--vf10-shadow);
}

.vf10-promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--vf10-shadow);
}

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

.vf10-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(34, 139, 34, 0.15);
    border-radius: 0.8rem;
    border: 1px solid var(--vf10-border);
}

.vf10-feature-icon {
    font-size: 2.4rem;
    color: var(--vf10-accent);
}

.vf10-feature-text {
    font-size: 1.3rem;
    color: var(--vf10-text-silver);
}

/* Testimonials */
.vf10-testimonial {
    background: rgba(0, 100, 0, 0.2);
    border-left: 4px solid var(--vf10-accent);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0 0.8rem 0.8rem 0;
}

.vf10-testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--vf10-text-silver);
    margin-bottom: 1rem;
}

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

/* Payment Methods */
.vf10-payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.vf10-payment-item {
    padding: 1rem 1.5rem;
    background: rgba(60, 179, 113, 0.15);
    border: 1px solid var(--vf10-border);
    border-radius: 0.8rem;
    font-size: 1.2rem;
    color: var(--vf10-text-silver);
}

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

.vf10-winner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 100, 0, 0.15);
    border-radius: 0.8rem;
    font-size: 1.3rem;
}

.vf10-winner-name {
    color: var(--vf10-text-light);
}

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

/* Footer */
.vf10-footer {
    background: linear-gradient(180deg, rgba(27, 38, 59, 0.95) 0%, var(--vf10-bg-dark) 100%);
    border-top: 1px solid var(--vf10-border);
    padding: 2.5rem 0 3rem;
}

.vf10-footer-brand {
    text-align: center;
    margin-bottom: 2rem;
}

.vf10-footer-desc {
    font-size: 1.3rem;
    color: var(--vf10-text-silver);
    line-height: 1.8;
    max-width: 350px;
    margin: 0 auto 1.5rem;
}

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

.vf10-footer-links a {
    padding: 0.6rem 1.2rem;
    background: var(--vf10-bg-secondary);
    color: var(--vf10-text-light);
    border-radius: 2rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.vf10-footer-links a:hover {
    background: var(--vf10-accent);
}

.vf10-footer-sitemap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.vf10-footer-sitemap a {
    font-size: 1.2rem;
    color: var(--vf10-text-silver);
}

.vf10-footer-sitemap a:hover {
    color: var(--vf10-accent);
}

.vf10-copyright {
    text-align: center;
    font-size: 1.2rem;
    color: var(--vf10-text-silver);
    padding-top: 1.5rem;
    border-top: 1px solid var(--vf10-border);
}

/* Mobile Bottom Navigation */
.vf10-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, rgba(27, 38, 59, 0.98) 0%, var(--vf10-bg-dark) 100%);
    border-top: 1px solid var(--vf10-border);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    padding: 0 0.5rem;
}

.vf10-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--vf10-text-silver);
}

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

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

.vf10-nav-text {
    font-size: 10px;
    text-align: center;
}

/* Desktop - Hide Bottom Nav */
@media (min-width: 769px) {
    .vf10-bottom-nav {
        display: none;
    }

    .vf10-menu-toggle {
        display: block;
    }
}

/* Toast Notification */
.vf10-toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--vf10-bg-secondary);
    color: var(--vf10-text-light);
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-size: 1.3rem;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
}

.vf10-toast-show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* RTP Stats */
.vf10-rtp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.vf10-rtp-item {
    text-align: center;
    padding: 1.2rem;
    background: rgba(34, 139, 34, 0.15);
    border-radius: 0.8rem;
    border: 1px solid var(--vf10-border);
}

.vf10-rtp-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--vf10-accent);
}

.vf10-rtp-label {
    font-size: 1.1rem;
    color: var(--vf10-text-silver);
}

/* App Download Section */
.vf10-app-section {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 100, 0, 0.3) 0%, rgba(34, 139, 34, 0.2) 100%);
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.vf10-app-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.vf10-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.8rem;
    background: var(--vf10-bg-dark);
    border: 2px solid var(--vf10-accent);
    border-radius: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vf10-app-btn:hover {
    background: var(--vf10-bg-secondary);
    border-color: var(--vf10-bg-secondary);
}

.vf10-app-btn i {
    font-size: 2.4rem;
    color: var(--vf10-accent);
}

.vf10-app-btn span {
    font-size: 1.3rem;
    color: var(--vf10-text-light);
}

/* Utility Classes */
.vf10-text-center { text-align: center; }
.vf10-text-accent { color: var(--vf10-accent); }
.vf10-mb-1 { margin-bottom: 1rem; }
.vf10-mb-2 { margin-bottom: 2rem; }
.vf10-mt-2 { margin-top: 2rem; }

/* Responsive Adjustments */
@media (max-width: 380px) {
    .vf10-game-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vf10-features {
        grid-template-columns: 1fr;
    }
}
