/**
 * PHFamous - Premium Online Casino Platform
 * CSS Design System for phfamous.club
 * Class prefix: vd10-
 */

/* CSS Variables */
:root {
    --vd10-primary: #FFB6C1;
    --vd10-secondary: #36454F;
    --vd10-bg-dark: #2F2F2F;
    --vd10-bg-darker: #2D2D2D;
    --vd10-text-light: #E0E0E0;
    --vd10-text-muted: #DCDCDC;
    --vd10-accent: #FFB6C1;
    --vd10-gradient: linear-gradient(135deg, #36454F 0%, #2F2F2F 100%);
    --vd10-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --vd10-radius: 12px;
    --vd10-radius-sm: 8px;
    --vd10-transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--vd10-bg-dark);
    color: var(--vd10-text-light);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--vd10-primary);
    text-decoration: none;
    transition: var(--vd10-transition);
}

a:hover {
    color: #FFC8D0;
}

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

/* Header */
.vd10-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--vd10-bg-darker);
    padding: 12px 16px;
    transition: var(--vd10-transition);
    border-bottom: 1px solid rgba(255, 182, 193, 0.1);
}

.vd10-header.vd10-scrolled {
    background: rgba(45, 45, 45, 0.98);
    box-shadow: var(--vd10-shadow);
    padding: 8px 16px;
}

.vd10-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.vd10-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vd10-logo img {
    height: 36px;
    width: auto;
}

.vd10-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--vd10-primary);
    letter-spacing: -0.5px;
}

.vd10-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vd10-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: var(--vd10-radius-sm);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--vd10-transition);
    border: none;
    text-align: center;
}

.vd10-btn-primary {
    background: var(--vd10-primary);
    color: var(--vd10-bg-darker);
}

.vd10-btn-primary:hover {
    background: #FFC8D0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.4);
}

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

.vd10-btn-outline:hover {
    background: var(--vd10-primary);
    color: var(--vd10-bg-darker);
}

.vd10-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--vd10-text-light);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

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

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

.vd10-mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--vd10-text-light);
    font-size: 28px;
    cursor: pointer;
}

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

.vd10-mobile-menu li {
    margin-bottom: 5px;
}

.vd10-mobile-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--vd10-text-light);
    border-radius: var(--vd10-radius-sm);
    transition: var(--vd10-transition);
}

.vd10-mobile-menu a:hover {
    background: rgba(255, 182, 193, 0.1);
    color: var(--vd10-primary);
}

.vd10-menu-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(--vd10-transition);
}

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

/* Main Content */
main {
    padding-top: 70px;
}

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

.vd10-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Carousel */
.vd10-carousel {
    position: relative;
    overflow: hidden;
    border-radius: var(--vd10-radius);
    margin-bottom: 30px;
}

.vd10-carousel-slides {
    position: relative;
    height: 200px;
}

@media (min-width: 768px) {
    .vd10-carousel-slides {
        height: 400px;
    }
}

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

.vd10-carousel-slide.vd10-active {
    opacity: 1;
}

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

.vd10-carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

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

.vd10-carousel-dot.vd10-active {
    background: var(--vd10-primary);
    transform: scale(1.2);
}

/* Section Titles */
.vd10-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--vd10-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vd10-section-title i {
    font-size: 20px;
}

/* Game Grid */
.vd10-game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

@media (min-width: 576px) {
    .vd10-game-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
    }
}

@media (min-width: 768px) {
    .vd10-game-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 992px) {
    .vd10-game-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

.vd10-game-card {
    background: var(--vd10-bg-darker);
    border-radius: var(--vd10-radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: var(--vd10-transition);
    border: 1px solid rgba(255, 182, 193, 0.1);
}

.vd10-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 182, 193, 0.2);
    border-color: var(--vd10-primary);
}

.vd10-game-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.vd10-game-card-name {
    padding: 8px;
    text-align: center;
    font-size: 11px;
    color: var(--vd10-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Content Sections */
.vd10-content-section {
    background: var(--vd10-bg-darker);
    border-radius: var(--vd10-radius);
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 182, 193, 0.1);
}

.vd10-content-section h2 {
    color: var(--vd10-primary);
    font-size: 22px;
    margin-bottom: 15px;
}

.vd10-content-section h3 {
    color: var(--vd10-primary);
    font-size: 18px;
    margin: 20px 0 10px;
}

.vd10-content-section p {
    color: var(--vd10-text-muted);
    margin-bottom: 15px;
    line-height: 1.8;
}

.vd10-content-section ul,
.vd10-content-section ol {
    margin: 15px 0;
    padding-left: 25px;
}

.vd10-content-section li {
    color: var(--vd10-text-muted);
    margin-bottom: 10px;
    line-height: 1.7;
}

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

@media (min-width: 768px) {
    .vd10-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.vd10-feature-item {
    background: rgba(255, 182, 193, 0.05);
    padding: 20px;
    border-radius: var(--vd10-radius-sm);
    text-align: center;
    transition: var(--vd10-transition);
}

.vd10-feature-item:hover {
    background: rgba(255, 182, 193, 0.1);
}

.vd10-feature-item i {
    font-size: 32px;
    color: var(--vd10-primary);
    margin-bottom: 12px;
}

.vd10-feature-item h4 {
    color: var(--vd10-text-light);
    font-size: 16px;
    margin-bottom: 8px;
}

.vd10-feature-item p {
    color: var(--vd10-text-muted);
    font-size: 13px;
    margin: 0;
}

/* Payment Methods */
.vd10-payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.vd10-payment-item {
    background: rgba(255, 182, 193, 0.05);
    padding: 15px 25px;
    border-radius: var(--vd10-radius-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--vd10-transition);
}

.vd10-payment-item:hover {
    background: rgba(255, 182, 193, 0.15);
}

.vd10-payment-item i {
    font-size: 24px;
    color: var(--vd10-primary);
}

/* Bottom Navigation */
.vd10-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--vd10-bg-darker);
    border-top: 1px solid rgba(255, 182, 193, 0.15);
    padding: 8px 0;
    display: none;
}

@media (max-width: 768px) {
    .vd10-bottom-nav {
        display: block;
    }
}

.vd10-bottom-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.vd10-bottom-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 56px;
    background: transparent;
    border: none;
    color: var(--vd10-text-muted);
    cursor: pointer;
    transition: var(--vd10-transition);
    padding: 5px;
}

.vd10-bottom-nav-btn:hover,
.vd10-bottom-nav-btn.vd10-active {
    color: var(--vd10-primary);
}

.vd10-bottom-nav-btn i {
    font-size: 24px;
    margin-bottom: 4px;
}

.vd10-bottom-nav-btn span {
    font-size: 11px;
    font-weight: 500;
}

/* Footer */
.vd10-footer {
    background: var(--vd10-bg-darker);
    padding: 40px 16px 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 182, 193, 0.1);
}

.vd10-footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.vd10-footer-brand {
    text-align: center;
    margin-bottom: 30px;
}

.vd10-footer-brand h3 {
    color: var(--vd10-primary);
    font-size: 24px;
    margin-bottom: 10px;
}

.vd10-footer-brand p {
    color: var(--vd10-text-muted);
    font-size: 14px;
}

.vd10-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.vd10-footer-links a {
    color: var(--vd10-text-muted);
    font-size: 14px;
}

.vd10-footer-links a:hover {
    color: var(--vd10-primary);
}

.vd10-footer-partners {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.vd10-footer-partners img {
    height: 30px;
    opacity: 0.7;
    transition: var(--vd10-transition);
}

.vd10-footer-partners img:hover {
    opacity: 1;
}

.vd10-footer-copyright {
    text-align: center;
    color: var(--vd10-text-muted);
    font-size: 13px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 182, 193, 0.1);
}

/* Utility Classes */
.vd10-text-center {
    text-align: center;
}

.vd10-mb-20 {
    margin-bottom: 20px;
}

.vd10-mt-20 {
    margin-top: 20px;
}

/* Responsive Header */
@media (max-width: 768px) {
    .vd10-header-actions .vd10-btn {
        padding: 8px 14px;
        font-size: 13px;
    }

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

    .vd10-logo-text {
        font-size: 18px;
    }
}

@media (max-width: 430px) {
    .vd10-header {
        padding: 10px 12px;
    }

    .vd10-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .vd10-section-title {
        font-size: 20px;
    }
}
