/* OKPUN - Main Stylesheet */
/* Class prefix: v1d9- */

/* Color Variables */
:root {
    --v1d9-primary: #FF91A4;
    --v1d9-secondary: #F5DEB3;
    --v1d9-accent: #CD853F;
    --v1d9-dark: #D2691E;
    --v1d9-bg-dark: #1E1E1E;
    --v1d9-text-light: #FFFFFF;
    --v1d9-text-dark: #333333;
    --v1d9-gradient: linear-gradient(135deg, var(--v1d9-primary), var(--v1d9-secondary));
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #FFFFFF;
    color: var(--v1d9-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
.v1d9-h1 {
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 700;
    color: var(--v1d9-bg-dark);
    margin-bottom: 20px;
    text-align: center;
}

.v1d9-h2 {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 600;
    color: var(--v1d9-primary);
    margin-bottom: 15px;
}

.v1d9-h3 {
    font-size: clamp(18px, 3.5vw, 24px);
    font-weight: 600;
    color: var(--v1d9-dark);
    margin-bottom: 12px;
}

.v1d9-p {
    font-size: clamp(14px, 3vw, 16px);
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Container and Layout */
.v1d9-wrapper {
    min-height: 100vh;
    padding-top: 80px;
}

.v1d9-container {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.v1d9-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.v1d9-header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.v1d9-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 430px;
    margin: 0 auto;
}

.v1d9-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--v1d9-bg-dark);
    font-weight: 700;
    font-size: 20px;
}

.v1d9-logo-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.v1d9-header-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.v1d9-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.v1d9-btn-primary {
    background: var(--v1d9-gradient);
    color: var(--v1d9-text-light);
}

.v1d9-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 145, 164, 0.3);
}

.v1d9-btn-secondary {
    background: transparent;
    color: var(--v1d9-primary);
    border: 2px solid var(--v1d9-primary);
}

.v1d9-btn-secondary:hover {
    background: var(--v1d9-primary);
    color: var(--v1d9-text-light);
}

.v1d9-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.v1d9-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--v1d9-bg-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Menu */
.v1d9-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.v1d9-menu-overlay.active {
    display: block;
    opacity: 1;
}

.v1d9-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--v1d9-text-light);
    z-index: 10000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.v1d9-mobile-menu.active {
    transform: translateX(0);
}

.v1d9-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.v1d9-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--v1d9-bg-dark);
}

.v1d9-menu-nav {
    padding: 20px 0;
}

.v1d9-menu-nav a {
    display: block;
    padding: 15px 20px;
    color: var(--v1d9-text-dark);
    text-decoration: none;
    transition: background 0.3s ease;
    border-bottom: 1px solid #eee;
}

.v1d9-menu-nav a:hover {
    background: var(--v1d9-secondary);
}

/* Section Styles */
.v1d9-section {
    margin-bottom: 30px;
}

.v1d9-section-title {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--v1d9-primary);
    display: inline-block;
    width: 100%;
}

.v1d9-section-subtitle {
    color: var(--v1d9-dark);
    margin-bottom: 10px;
}

/* Card Styles */
.v1d9-card {
    background: var(--v1d9-text-light);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 145, 164, 0.1);
}

.v1d9-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--v1d9-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.v1d9-card-title i {
    font-size: 24px;
}

.v1d9-card-content {
    color: var(--v1d9-text-dark);
}

/* Grid Layouts */
.v1d9-grid {
    display: grid;
    gap: 15px;
}

.v1d9-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.v1d9-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.v1d9-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.v1d9-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.v1d9-text-center {
    text-align: center;
}

/* Button Variants */
.v1d9-btn-block {
    display: block;
    width: 100%;
}

.v1d9-mt-3 {
    margin-top: 15px;
}

.v1d9-link {
    color: var(--v1d9-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.v1d9-link:hover {
    gap: 10px;
}

/* Game Items */
.v1d9-game-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--v1d9-text-dark);
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.v1d9-game-item:hover {
    background: var(--v1d9-secondary);
    transform: translateY(-5px);
}

.v1d9-game-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
    border-radius: 10px;
}

.v1d9-game-name {
    font-size: 12px;
    text-align: center;
    font-weight: 600;
}

.v1d9-game-icon-large {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
}

.v1d9-game-preview {
    text-align: center;
}

.v1d9-game-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.v1d9-stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--v1d9-dark);
}

.v1d9-stat-item i {
    color: var(--v1d9-primary);
}

/* Footer Styles */
.v1d9-footer {
    background: var(--v1d9-bg-dark);
    color: var(--v1d9-text-light);
    padding: 40px 0 20px;
    margin-top: 60px;
}

.v1d9-footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.v1d9-footer-section h3 {
    color: var(--v1d9-primary);
    margin-bottom: 15px;
    font-size: 18px;
}

.v1d9-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.v1d9-footer-nav a {
    color: var(--v1d9-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.v1d9-footer-nav a:hover {
    color: var(--v1d9-secondary);
}

.v1d9-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.v1d9-partner-logo {
    width: 60px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.v1d9-partner-logo:hover {
    opacity: 1;
}

.v1d9-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.v1d9-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.v1d9-footer-links a {
    color: var(--v1d9-secondary);
    text-decoration: none;
    font-weight: 600;
}

/* Bottom Navigation */
.v1d9-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--v1d9-text-light);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    padding: 0;
    height: 64px;
}

.v1d9-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--v1d9-text-dark);
    flex: 1;
    min-height: 64px;
    transition: all 0.3s ease;
    position: relative;
}

.v1d9-bottom-nav-item.active {
    color: var(--v1d9-primary);
}

.v1d9-bottom-nav-item i {
    font-size: 24px;
    margin-bottom: 4px;
}

.v1d9-bottom-nav-item span {
    font-size: 11px;
    font-weight: 600;
}

.v1d9-bottom-nav-item:hover {
    background: rgba(255, 145, 164, 0.1);
    color: var(--v1d9-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .v1d9-header {
        display: block;
    }

    .v1d9-menu-toggle {
        display: flex;
    }

    .v1d9-btn {
        font-size: 12px;
        padding: 6px 16px;
    }

    .v1d9-wrapper {
        padding-bottom: 80px;
    }

    .v1d9-bottom-nav {
        display: flex;
    }

    @media (min-width: 769px) {
        .v1d9-bottom-nav {
            display: none;
        }

        .v1d9-wrapper {
            padding-bottom: 0;
        }
    }
}

@media (min-width: 769px) {
    .v1d9-menu-toggle,
    .v1d9-mobile-menu,
    .v1d9-menu-overlay {
        display: none;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.v1d9-card,
.v1d9-section {
    animation: fadeIn 0.6s ease-out;
}

/* List Styles */
.v1d9-list {
    list-style: none;
    padding: 0;
}

.v1d9-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.v1d9-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--v1d9-primary);
    font-weight: bold;
}

/* Badge Styles */
.v1d9-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--v1d9-gradient);
    color: var(--v1d9-text-light);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.v1d9-badge:hover {
    transform: scale(1.05);
}

/* Hero Styles */
.v1d9-hero-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    background: var(--v1d9-gradient);
    color: var(--v1d9-text-light);
    border-radius: 20px;
    overflow: hidden;
}

.v1d9-hero-image {
    border-radius: 15px;
    overflow: hidden;
}

.v1d9-hero-content {
    padding: 20px;
}

.v1d9-hero-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Statistics Cards */
.v1d9-stat-card {
    text-align: center;
    padding: 20px;
    background: var(--v1d9-secondary);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.v1d9-stat-card:hover {
    transform: translateY(-5px);
}

.v1d9-stat-card i {
    font-size: 32px;
    color: var(--v1d9-primary);
    margin-bottom: 10px;
}

.v1d9-stat-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--v1d9-bg-dark);
    margin-bottom: 5px;
}

.v1d9-stat-card p {
    color: var(--v1d9-text-dark);
    font-size: 14px;
    font-weight: 600;
}

/* Button Groups */
.v1d9-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.v1d9-buttons .v1d9-btn {
    flex: 1;
    min-width: 120px;
}

/* Success Cards */
.v1d9-success-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, var(--v1d9-secondary), rgba(255, 145, 164, 0.1));
    border-radius: 15px;
    border: 1px solid var(--v1d9-primary);
}

.v1d9-success-avatar {
    width: 50px;
    height: 50px;
    background: var(--v1d9-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v1d9-text-light);
    font-size: 24px;
}

.v1d9-success-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--v1d9-bg-dark);
}

.v1d9-success-content p {
    font-size: 13px;
    margin: 0;
    color: var(--v1d9-text-dark);
}

/* VIP Tiers */
.v1d9-vip-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.v1d9-vip-tier {
    background: var(--v1d9-secondary);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.v1d9-vip-tier:hover {
    border-color: var(--v1d9-primary);
    transform: scale(1.05);
}

.v1d9-tier-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--v1d9-bg-dark);
    margin-bottom: 10px;
}

.v1d9-tier-benefits {
    font-size: 12px;
    color: var(--v1d9-text-dark);
}

.v1d9-tier-benefits i {
    color: var(--v1d9-primary);
    margin-right: 5px;
}

/* Referral Stats */
.v1d9-referral-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
    text-align: center;
}

.v1d9-referral-stat h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--v1d9-primary);
    margin-bottom: 5px;
}

.v1d9-referral-stat p {
    font-size: 12px;
    color: var(--v1d9-text-dark);
    font-weight: 600;
}

/* Promotions List */
.v1d9-promotions-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.v1d9-promotion {
    background: var(--v1d9-secondary);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--v1d9-primary);
}

.v1d9-promotion h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--v1d9-bg-dark);
    font-size: 16px;
}

.v1d9-promotion p {
    margin: 0;
    color: var(--v1d9-text-dark);
    font-size: 14px;
}

/* Download Steps */
.v1d9-download-steps {
    counter-reset: step;
}

.v1d9-step {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: start;
}

.v1d9-step-number {
    width: 30px;
    height: 30px;
    background: var(--v1d9-primary);
    color: var(--v1d9-text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.v1d9-step-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--v1d9-bg-dark);
    margin-bottom: 8px;
}

.v1d9-step-content p {
    margin: 0;
    font-size: 14px;
    color: var(--v1d9-text-dark);
}

/* Promotional Grid */
.v1d9-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.v1d9-promo-item {
    text-align: center;
    background: var(--v1d9-secondary);
    padding: 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.v1d9-promo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 145, 164, 0.2);
}

.v1d9-promo-image {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.v1d9-promo-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--v1d9-bg-dark);
    margin-bottom: 5px;
}

/* Earning Steps */
.v1d9-earn-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

.v1d9-earn-steps .v1d9-step {
    background: var(--v1d9-secondary);
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid var(--v1d9-primary);
}

/* VIP Benefits Grid */
.v1d9-vip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.v1d9-vip-item {
    text-align: center;
    background: var(--v1d9-secondary);
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.v1d9-vip-item:hover {
    transform: scale(1.05);
}

.v1d9-vip-item i {
    font-size: 36px;
    color: var(--v1d9-primary);
    margin-bottom: 10px;
}

.v1d9-vip-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--v1d9-bg-dark);
    margin-bottom: 5px;
}