/**
 * Custom Overrides
 * Cricketid App Platform
 */

/* ========================================
   Custom Scrollbar
   ======================================== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--tiger-orange);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--tiger-deep);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--tiger-orange) var(--light-gray);
}

/* ========================================
   Text Selection
   ======================================== */
::selection {
    background: var(--tiger-orange);
    color: var(--text-light);
}

::-moz-selection {
    background: var(--tiger-orange);
    color: var(--text-light);
}

/* ========================================
   Focus States
   ======================================== */
:focus-visible {
    outline: 3px solid var(--tiger-orange);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--tiger-orange);
    outline-offset: 2px;
}

/* ========================================
   Custom Animations
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease forwards;
}

.animate-slideIn {
    animation: slideIn 0.5s ease forwards;
}

/* Stagger animation delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* ========================================
   Icon Styling
   ======================================== */
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 107, 0, 0.2));
    color: var(--tiger-orange);
    margin: 0 auto var(--space-md);
}

.icon-lg {
    width: 80px;
    height: 80px;
    font-size: 32px;
}

/* ========================================
   Feature Box Variations
   ======================================== */
.feature-box {
    text-align: center;
    padding: var(--space-xl);
}

.feature-box-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--tiger-orange), var(--tiger-deep));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--text-light);
    font-size: 32px;
    box-shadow: var(--shadow-orange);
}

.feature-box-title {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.feature-box-desc {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   Trust Badges
   ======================================== */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    padding: var(--space-lg);
    background: var(--light-gray);
    border-radius: var(--radius-lg);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary);
}

.trust-badge i {
    font-size: 20px;
    color: var(--success);
}

/* ========================================
   Image Overlay
   ======================================== */
.image-overlay {
    position: relative;
    overflow: hidden;
}

.image-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    z-index: 1;
}

.image-overlay img {
    transition: transform 0.5s ease;
}

.image-overlay:hover img {
    transform: scale(1.05);
}

/* ========================================
   Gradient Text
   ======================================== */
.gradient-text-orange {
    background: linear-gradient(135deg, var(--tiger-orange), var(--tiger-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-dark {
    background: linear-gradient(135deg, #1A1A2E, #16213E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Custom Button Styles
   ======================================== */
.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-glow:hover::before {
    transform: translateX(100%);
}

.btn-shadow {
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.4);
}

.btn-shadow:hover {
    box-shadow: 0 15px 50px rgba(255, 107, 0, 0.5);
}

/* ========================================
   Custom Card Styles
   ======================================== */
.card-gradient {
    background: linear-gradient(135deg, var(--tiger-orange), var(--tiger-deep));
    color: var(--text-light);
}

.card-gradient .card-title,
.card-gradient .card-body {
    color: var(--text-light);
}

.card-elevated {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.card-border {
    border: 2px solid var(--border-gray);
    box-shadow: none;
}

.card-border:hover {
    border-color: var(--tiger-orange);
}

/* ========================================
   Decorative Elements
   ======================================== */
.decorative-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(var(--tiger-orange) 2px, transparent 2px);
    background-size: 10px 10px;
    opacity: 0.3;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--tiger-orange);
    opacity: 0.2;
}

/* ========================================
   Divider Lines
   ======================================== */
.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-gray), transparent);
    margin: var(--space-2xl) 0;
}

.divider-orange {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--tiger-orange), transparent);
    width: 100px;
    margin: var(--space-lg) auto;
}

/* ========================================
   Tag/Pill Styles
   ======================================== */
.tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    background: var(--light-gray);
    color: var(--text-secondary);
}

.tag-primary {
    background: rgba(255, 107, 0, 0.1);
    color: var(--tiger-orange);
}

.tag-success {
    background: rgba(76, 175, 80, 0.1);
    color: var(--success);
}

.tag-warning {
    background: rgba(255, 193, 7, 0.1);
    color: var(--warning);
}

.tag-error {
    background: rgba(244, 67, 54, 0.1);
    color: var(--error);
}

/* ========================================
   Badge Notification
   ======================================== */
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    background: var(--error);
    color: var(--text-light);
}

.badge-primary {
    background: var(--tiger-orange);
}

.badge-success {
    background: var(--success);
}

/* ========================================
   Custom Checkbox/Radio
   ======================================== */
.custom-checkbox,
.custom-radio {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
}

.custom-checkbox input,
.custom-radio input {
    display: none;
}

.custom-checkbox .checkmark,
.custom-radio .radio-mark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.custom-radio .radio-mark {
    border-radius: 50%;
}

.custom-checkbox input:checked + .checkmark,
.custom-radio input:checked + .radio-mark {
    background: var(--tiger-orange);
    border-color: var(--tiger-orange);
    color: var(--text-light);
}

/* ========================================
   Rating Stars
   ======================================== */
.rating {
    display: flex;
    gap: 2px;
    color: var(--tiger-yellow);
}

.rating i {
    font-size: 16px;
}

.rating-empty {
    color: var(--border-gray);
}

/* ========================================
   Table Custom Styles
   ======================================== */
.table-responsive {
    overflow-x: auto;
}

.table-custom {
    width: 100%;
    border-collapse: collapse;
}

.table-custom th,
.table-custom td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--border-gray);
}

.table-custom th {
    background: var(--light-gray);
    font-weight: 600;
    color: var(--text-primary);
}

.table-custom tbody tr:hover {
    background: rgba(255, 107, 0, 0.03);
}

/* ========================================
   Video Container
   ======================================== */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--dark-bg);
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ========================================
   Background Patterns
   ======================================== */
.bg-pattern-dots {
    background-image: radial-gradient(var(--border-gray) 1px, transparent 1px);
    background-size: 20px 20px;
}

.bg-pattern-lines {
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 20px,
        var(--border-gray) 20px,
        var(--border-gray) 21px
    );
}

/* ========================================
   Loading Skeleton
   ======================================== */
.skeleton {
    background: linear-gradient(90deg, var(--light-gray) 25%, #e8e8e8 50%, var(--light-gray) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-sm);
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-text {
    height: 16px;
    margin-bottom: var(--space-sm);
}

.skeleton-title {
    height: 24px;
    width: 60%;
    margin-bottom: var(--space-md);
}

.skeleton-image {
    height: 200px;
    width: 100%;
}

/* ========================================
   Notification Toast
   ======================================== */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    color: var(--text-light);
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.toast-success {
    background: var(--success);
}

.toast-error {
    background: var(--error);
}

.toast-warning {
    background: var(--warning);
    color: #000;
}

.toast-info {
    background: var(--info);
}

/* ========================================
   Phone Mockup Styles
   ======================================== */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    perspective: 1500px;
}

.phone-container {
    position: relative;
    transform-style: preserve-3d;
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% {
        transform: perspective(1500px) rotateY(-15deg) rotateX(5deg) translateY(0);
    }
    25% {
        transform: perspective(1500px) rotateY(-12deg) rotateX(3deg) translateY(-30px);
    }
    50% {
        transform: perspective(1500px) rotateY(-18deg) rotateX(7deg) translateY(-15px);
    }
    75% {
        transform: perspective(1500px) rotateY(-10deg) rotateX(4deg) translateY(-40px);
    }
}

.phone-mockup {
    position: relative;
    width: 320px;
    height: 660px;
    background: linear-gradient(145deg, #1a1a2e, #16213e, #0f0f1a);
    border-radius: 42px;
    padding: 12px;
    box-shadow:
        0 50px 120px rgba(0, 0, 0, 0.6),
        0 0 0 2px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        -20px 20px 60px rgba(0, 0, 0, 0.4),
        20px -20px 60px rgba(255, 107, 107, 0.1);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a1a2e 0%, #12121f 100%);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.dynamic-island {
    width: 110px;
    height: 32px;
    background: #000;
    border-radius: 18px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 14px;
}

.dynamic-island::before {
    content: '';
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #1d4e7f, #0a2540);
    border-radius: 50%;
    margin-right: 6px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.6rem;
    color: #ff4757;
}

.live-indicator .dot {
    width: 5px;
    height: 5px;
    background: #ff4757;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 18px 4px;
    font-size: 0.65rem;
    font-weight: 600;
}

.status-icons {
    display: flex;
    gap: 4px;
    align-items: center;
}

.phone-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    padding-top: 42px;
}

.phone-content::-webkit-scrollbar {
    display: none;
}

.app-header {
    padding: 12px 16px;
    background: linear-gradient(180deg, rgba(255, 107, 107, 0.15) 0%, transparent 100%);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-avatar {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #ff6b6b, #ffd93d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.user-details h3 {
    font-size: 0.85rem;
    font-weight: 700;
}

.user-details p {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 3px;
}

.user-details p i {
    color: #ffd93d;
    font-size: 0.55rem;
}

.header-actions {
    display: flex;
    gap: 8px;
}

.header-btn {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-btn i {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.notification-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 16px;
    height: 16px;
    background: #ff4757;
    border-radius: 50%;
    font-size: 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.balance-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 107, 107, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 16px;
    padding: 16px;
    margin: 0 16px 14px;
    position: relative;
    overflow: hidden;
}

.balance-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
}

.balance-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.balance-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.balance-amount {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd93d, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.balance-bonus {
    background: rgba(255, 71, 87, 0.2);
    color: #ff6b6b;
    padding: 3px 8px;
    border-radius: 18px;
    font-size: 0.6rem;
    font-weight: 600;
}

.balance-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.balance-btn {
    flex: 1;
    padding: 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.3s;
}

.balance-btn.deposit {
    background: linear-gradient(135deg, #00c853, #00e676);
    color: white;
}

.balance-btn.withdraw {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
}

.balance-btn:hover {
    transform: scale(1.02);
}

.stories-section {
    padding: 0 16px 14px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.section-title {
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.section-title i {
    color: #ff6b6b;
}

.section-more {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.stories-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.stories-scroll::-webkit-scrollbar {
    display: none;
}

.story-item {
    flex-shrink: 0;
    text-align: center;
}

.story-avatar {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, #ff6b6b, #ffd93d, #ff6b6b);
    background-size: 200% 200%;
    animation: storyGlow 3s ease infinite;
    margin-bottom: 4px;
}

@keyframes storyGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.story-avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.story-name {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 54px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.categories {
    display: flex;
    gap: 6px;
    padding: 0 16px 14px;
    overflow-x: auto;
    scrollbar-width: none;
}

.categories::-webkit-scrollbar {
    display: none;
}

.category-chip {
    flex-shrink: 0;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.category-chip.active {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.3), rgba(255, 215, 0, 0.2));
    border-color: rgba(255, 107, 107, 0.4);
    color: white;
}

.featured-match {
    margin: 0 16px 14px;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.15), rgba(255, 215, 0, 0.1));
    border: 1px solid rgba(255, 71, 87, 0.2);
    border-radius: 18px;
    padding: 16px;
    position: relative;
    overflow: hidden;
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.55rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
}

.featured-badge .dot {
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: blink 1s infinite;
}

.featured-league {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.featured-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.featured-team {
    text-align: center;
    flex: 1;
}

.featured-team-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
    font-size: 1rem;
    font-weight: 700;
}

.featured-team-name {
    font-size: 0.7rem;
    font-weight: 600;
}

.featured-score {
    text-align: center;
    padding: 0 12px;
}

.score-main {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffd93d;
}

.score-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
}

.featured-odds {
    display: flex;
    gap: 6px;
}

.featured-odds-btn {
    flex: 1;
    padding: 10px 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.featured-odds-btn:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.featured-odds-btn.selected {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd93d;
}

.featured-odds-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3px;
}

.featured-odds-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffd93d;
}

.matches-section {
    padding: 0 16px 14px;
}

.match-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 14px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.match-card:hover {
    border-color: rgba(255, 107, 107, 0.3);
    transform: translateX(4px);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.match-league {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.match-time {
    font-size: 0.65rem;
    color: #ff6b6b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
}

.match-time i {
    font-size: 0.55rem;
}

.match-teams {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.match-team {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.match-team-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
}

.match-team-name {
    font-size: 0.7rem;
    font-weight: 600;
}

.match-vs {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 600;
    padding: 0 4px;
}

.match-odds {
    display: flex;
    gap: 6px;
}

.odds-btn {
    flex: 1;
    padding: 8px 5px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.odds-btn:hover {
    background: rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.25);
}

.odds-label {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
}

.odds-value {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffd93d;
}

.casino-section {
    padding: 0 16px 14px;
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.casino-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.casino-card:hover {
    transform: scale(1.02);
}

.casino-card-img {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.casino-card:nth-child(1) .casino-card-img {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.casino-card:nth-child(2) .casino-card-img {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.casino-card:nth-child(3) .casino-card-img {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.casino-card:nth-child(4) .casino-card-img {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.casino-card-info {
    padding: 8px;
}

.casino-card-name {
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.casino-card-players {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.5);
}

.promo-section {
    padding: 0 16px 14px;
}

.promo-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 107, 107, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 16px;
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: -25px;
    right: -25px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
}

.promo-badge {
    display: inline-block;
    background: #ff4757;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.55rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.promo-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.promo-desc {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.promo-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffd93d, #ff6b6b);
    padding: 6px 16px;
    border-radius: 18px;
    font-size: 0.65rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.promo-btn:hover {
    transform: scale(1.05);
}

.leaderboard-section {
    padding: 0 16px 14px;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-bottom: 6px;
}

.leaderboard-rank {
    width: 22px;
    height: 22px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: #ffd93d;
}

.leaderboard-rank.gold {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #000;
}

.leaderboard-rank.silver {
    background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
    color: #000;
}

.leaderboard-rank.bronze {
    background: linear-gradient(135deg, #cd7f32, #b8720d);
    color: #000;
}

.leaderboard-avatar {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.leaderboard-info {
    flex: 1;
}

.leaderboard-name {
    font-size: 0.7rem;
    font-weight: 600;
}

.leaderboard-wins {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.5);
}

.leaderboard-amount {
    font-size: 0.75rem;
    font-weight: 700;
    color: #00c853;
}

.app-nav {
    display: flex;
    justify-content: space-around;
    padding: 10px 12px;
    background: rgba(10, 10, 20, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-item {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    padding: 4px 8px;
}

.nav-item.active {
    color: #ff6b6b;
}

.nav-item i {
    font-size: 1rem;
    margin-bottom: 2px;
}

.nav-item span {
    font-size: 0.55rem;
    display: block;
}

.phone-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.2) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.15); }
}

.side-glow-left {
    position: absolute;
    width: 150px;
    height: 350px;
    background: linear-gradient(90deg, rgba(255, 107, 107, 0.12), transparent);
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    filter: blur(30px);
}

.side-glow-right {
    position: absolute;
    width: 150px;
    height: 350px;
    background: linear-gradient(-90deg, rgba(255, 215, 0, 0.12), transparent);
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    filter: blur(30px);
}

.extra-space {
    height: 25px;
}

/* ========================================
   Live Ticker
   ======================================== */
.live-ticker {
    background: linear-gradient(90deg, var(--tiger-deep), var(--tiger-orange));
    padding: 8px 0;
    overflow: hidden;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    animation: tickerScroll 20s linear infinite;
    white-space: nowrap;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-badge {
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ticker-badge .live-dot {
    animation: blink 1s infinite;
}

.ticker-content {
    font-size: 0.8rem;
}

.ticker-link {
    background: white;
    color: var(--tiger-deep);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.ticker-link:hover {
    transform: scale(1.05);
}

/* ========================================
   Hero Grid Layout
   ======================================== */
.hero-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 350px;
}

.hero-visual {
    flex: 0 0 auto;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.hero-glow.glow-1 {
    width: 500px;
    height: 500px;
    background: var(--tiger-orange);
    top: -200px;
    left: -200px;
    animation: glowFloat1 10s ease-in-out infinite;
}

.hero-glow.glow-2 {
    width: 400px;
    height: 400px;
    background: var(--tiger-yellow);
    bottom: -150px;
    right: -150px;
    animation: glowFloat2 8s ease-in-out infinite;
}

@keyframes glowFloat1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 50px); }
}

@keyframes glowFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, -30px); }
}

.hero-particle {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 30%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--tiger-orange);
    margin-bottom: 25px;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(255, 107, 107, 0); }
}

.badge-icon {
    animation: sparkle 1s infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(10deg); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.hero-feature:hover {
    background: rgba(255, 107, 0, 0.2);
    border-color: var(--tiger-orange);
    transform: translateY(-2px);
}

.hero-feature i {
    color: var(--tiger-orange);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-whatsapp {
    position: relative;
    overflow: hidden;
}

.btn-whatsapp .btn-subtext {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
    margin-top: 2px;
}

.hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.trust-item i {
    color: var(--success);
}

/* ========================================
   Stats Section
   ======================================== */
.stats-section {
    background: linear-gradient(135deg, var(--tiger-deep), #0a0a1a);
    padding: 40px 0;
}

.stats-grid-full {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.stat-card {
    text-align: center;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 107, 0, 0.1);
    border-color: var(--tiger-orange);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--tiger-orange), var(--tiger-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.2rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--tiger-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Section Tag
   ======================================== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--tiger-orange);
    margin-bottom: 15px;
}

.text-center {
    text-align: center;
}

.mt-2xl {
    margin-top: var(--space-2xl);
}

/* ========================================
   Sports Grid
   ======================================== */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sport-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.sport-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tiger-orange), var(--tiger-yellow));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.sport-card:hover::before {
    transform: scaleX(1);
}

.sport-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sport-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.sport-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.sport-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.sport-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.sport-tags span {
    background: rgba(255, 107, 0, 0.2);
    color: var(--tiger-orange);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.sport-cricket { border-top: 3px solid #4CAF50; }
.sport-football { border-top: 3px solid #2196F3; }
.sport-tennis { border-top: 3px solid #9C27B0; }
.sport-kabaddi { border-top: 3px solid #FF9800; }
.sport-basketball { border-top: 3px solid #E91E63; }
.sport-esports { border-top: 3px solid #00BCD4; }

/* ========================================
   Casino Section
   ======================================== */
.casino-section {
    background: linear-gradient(135deg, #1a0a2e, #0f0f1a);
}

.casino-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.casino-featured {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 215, 0, 0.1));
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.casino-featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ffd93d);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #000;
}

.casino-featured-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.casino-live-dot {
    width: 8px;
    height: 8px;
    background: #ff4757;
    border-radius: 50%;
    animation: blink 1s infinite;
}

.casino-featured-content span {
    color: #ff4757;
    font-size: 0.75rem;
    font-weight: 700;
}

.casino-game-icon {
    font-size: 5rem;
    margin-bottom: 15px;
}

.casino-featured h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.casino-featured p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.casino-players {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.casino-games {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.casino-game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
    position: relative;
}

.casino-game-card:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.08);
}

.casino-game-img {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-game-info {
    flex: 1;
}

.casino-game-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.casino-game-info p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.live-tag {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ff4757;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.55rem;
    font-weight: 700;
}

/* ========================================
   Promotions Section
   ======================================== */
.promotions-section {
    background: linear-gradient(135deg, #0a0a1a, #1a1a2e);
}

.promos-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    min-height: 400px;
}

.promo-card-large {
    grid-row: span 3;
    background: linear-gradient(135deg, var(--tiger-orange), var(--tiger-deep));
    border-radius: 24px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.promo-card-bg {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

.promo-card-content {
    position: relative;
    z-index: 1;
    color: white;
}

.promo-badge-large {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.promo-card-large h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.promo-card-large p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.promo-details {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.promo-details span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    opacity: 0.8;
}

.btn-primary {
    background: white;
    color: var(--tiger-orange);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.promo-card-small {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.promo-card-small:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--tiger-orange);
}

.promo-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.promo-card-small h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.promo-card-small p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.promo-code {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: var(--tiger-yellow);
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 600;
}

/* ========================================
   VIP Section
   ======================================== */
.vip-section {
    background: linear-gradient(135deg, #1a1a2e, #0f0f1a);
    padding: 60px 0;
}

.vip-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.vip-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.vip-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.vip-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.vip-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
}

.vip-benefit i {
    color: var(--tiger-yellow);
}

.btn-vip {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #000;
    font-weight: 700;
}

/* ========================================
   Payment Section
   ======================================== */
.payment-section {
    background: linear-gradient(135deg, #0a0a1a, #1a1a2e);
}

.payment-methods {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.payment-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 25px;
    text-align: center;
    transition: all 0.3s;
}

.payment-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--tiger-orange);
}

.payment-card i {
    font-size: 1.5rem;
    color: var(--tiger-orange);
    margin-bottom: 8px;
}

.payment-card span {
    font-size: 0.85rem;
    font-weight: 500;
}

.payment-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--tiger-orange);
}

.info-item strong {
    display: block;
    font-size: 0.9rem;
}

.info-item span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Features Grid Full
   ======================================== */
.features-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--tiger-orange), var(--tiger-deep));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ========================================
   Platforms Section
   ======================================== */
.platforms-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.platforms-section .section-header h2,
.platforms-section .section-header p {
    color: var(--text-primary);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.platform-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.platform-card:hover {
    transform: translateY(-3px);
    border-color: var(--tiger-orange);
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.2);
}

/* ========================================
   Winner Section
   ======================================== */
.winner-section {
    background: linear-gradient(135deg, #1a1a2e, #0f0f1a);
    padding: 40px 0;
    overflow: hidden;
}

.winner-content {
    text-align: center;
}

.winner-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.winner-header i {
    font-size: 2rem;
    color: var(--tiger-yellow);
}

.winner-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.winners-marquee {
    display: flex;
    gap: 30px;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.winner-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.winner-amount {
    color: var(--success);
    font-weight: 700;
    font-size: 0.95rem;
}

.winner-game {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* ========================================
   Responsible Section
   ======================================== */
.responsible-section {
    padding: 40px 0;
}

.responsible-content {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.responsible-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--tiger-orange), var(--tiger-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.responsible-text {
    flex: 1;
    min-width: 250px;
}

.responsible-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.responsible-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.responsible-links {
    display: flex;
    gap: 15px;
}

.responsible-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.responsible-links a:hover {
    background: var(--tiger-orange);
    color: white;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-box {
    background: linear-gradient(135deg, var(--tiger-orange), var(--tiger-deep));
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.cta-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    color: white;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-box .btn-whatsapp {
    background: white;
    color: var(--tiger-orange);
}

.cta-box .btn-whatsapp:hover {
    background: #f0f0f0;
}

/* ========================================
   Floating WhatsApp
   ======================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 5px 30px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s;
    animation: floatBtn 3s ease-in-out infinite;
}

@keyframes floatBtn {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp i {
    font-size: 1.5rem;
}

/* ========================================
   Fade In Animation
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1200px) {
    .stats-grid-full {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .promos-grid {
        grid-template-columns: 1fr 1fr;
        min-height: auto;
    }

    .promo-card-large {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        flex-direction: column;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .stats-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }

    .sports-grid,
    .features-grid-full {
        grid-template-columns: 1fr;
    }

    .casino-showcase {
        grid-template-columns: 1fr;
    }

    .promos-grid {
        grid-template-columns: 1fr;
    }

    .payment-info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .vip-benefits {
        flex-direction: column;
        align-items: center;
    }

    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .winners-marquee {
        flex-wrap: wrap;
        justify-content: center;
        animation: none;
    }

    .floating-whatsapp span {
        display: none;
    }

    .floating-whatsapp {
        padding: 15px;
        border-radius: 50%;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }

    .hero-visual {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .stats-grid-full {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stat-card {
        padding: 15px 10px;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}