/**
 * PH 77 - Gaming Website CSS Design
 * Version: 1.0.0
 * Prefix: w7c01-
 * Color Palette: #00CED1 | #9932CC | #3A3A3A | #FF8000 | #26A69A
 */

/* CSS Variables */
:root {
    --w7c01-primary: #00CED1;
    --w7c01-secondary: #9932CC;
    --w7c01-bg-dark: #3A3A3A;
    --w7c01-accent: #FF8000;
    --w7c01-success: #26A69A;
    --w7c01-text-light: #FFFFFF;
    --w7c01-text-dark: #1A1A1A;
    --w7c01-bg-gradient: linear-gradient(135deg, #3A3A3A 0%, #2A2A2A 100%);
    --w7c01-primary-gradient: linear-gradient(135deg, #00CED1 0%, #26A69A 100%);
    --w7c01-secondary-gradient: linear-gradient(135deg, #9932CC 0%, #7B2A9E 100%);
}

/* Base Reset */
* {
    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;
    font-size: 1.6rem;
    line-height: 1.5;
    background: var(--w7c01-bg-dark);
    color: var(--w7c01-text-light);
    min-height: 100vh;
}

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

.w7c01-wrapper {
    width: 100%;
    overflow-x: hidden;
}

/* Header */
.w7c01-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(58,58,58,0.98) 0%, rgba(42,42,42,0.95) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid var(--w7c01-primary);
}

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

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

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

.w7c01-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--w7c01-primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.w7c01-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-height: 44px;
}

.w7c01-btn-primary {
    background: var(--w7c01-primary-gradient);
    color: var(--w7c01-text-dark);
}

.w7c01-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,206,209,0.4);
}

.w7c01-btn-secondary {
    background: var(--w7c01-secondary-gradient);
    color: var(--w7c01-text-light);
}

.w7c01-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(153,50,204,0.4);
}

.w7c01-btn-accent {
    background: var(--w7c01-accent);
    color: var(--w7c01-text-light);
}

.w7c01-btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,128,0,0.4);
}

/* Menu Toggle */
.w7c01-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--w7c01-text-light);
    font-size: 2.4rem;
}

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

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

.w7c01-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;
}

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

.w7c01-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: var(--w7c01-text-light);
    font-size: 2.4rem;
    cursor: pointer;
}

.w7c01-menu-nav {
    margin-top: 4rem;
}

.w7c01-menu-link {
    display: block;
    padding: 1.2rem 1rem;
    color: var(--w7c01-text-light);
    text-decoration: none;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.w7c01-menu-link:hover {
    color: var(--w7c01-primary);
    padding-left: 1.5rem;
}

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

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

/* Carousel */
.w7c01-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.w7c01-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.w7c01-slide {
    min-width: 100%;
    position: relative;
}

.w7c01-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.w7c01-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.w7c01-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 0;
}

.w7c01-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Section Styles */
.w7c01-section {
    padding: 2rem 0;
}

.w7c01-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--w7c01-primary);
    text-align: center;
}

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

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

.w7c01-game-item:hover {
    transform: scale(1.05);
}

.w7c01-game-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.w7c01-game-item:hover img {
    border-color: var(--w7c01-primary);
}

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

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

/* Card */
.w7c01-card {
    background: linear-gradient(145deg, rgba(58,58,58,0.9) 0%, rgba(42,42,42,0.9) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.w7c01-card-text {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* Features List */
.w7c01-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.w7c01-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

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

.w7c01-feature-text {
    font-size: 1.4rem;
}

/* FAQ */
.w7c01-faq-item {
    margin-bottom: 1rem;
}

.w7c01-faq-question {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--w7c01-accent);
    margin-bottom: 0.5rem;
}

.w7c01-faq-answer {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

/* Footer */
.w7c01-footer {
    background: linear-gradient(180deg, #2A2A2A 0%, #1A1A1A 100%);
    padding: 3rem 0 1.5rem;
    border-top: 2px solid var(--w7c01-secondary);
}

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

.w7c01-footer-desc {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.w7c01-footer-link {
    color: var(--w7c01-primary);
    text-decoration: none;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

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

.w7c01-partners {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.w7c01-partner-logo {
    width: 60px;
    height: 30px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.w7c01-partner-logo:hover {
    opacity: 1;
}

.w7c01-copyright {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.5);
}

/* Bottom Navigation */
.w7c01-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: linear-gradient(180deg, rgba(42,42,42,0.98) 0%, rgba(26,26,26,0.98) 100%);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    border-top: 2px solid var(--w7c01-primary);
}

@media (min-width: 769px) {
    .w7c01-bottom-nav {
        display: none;
    }
}

.w7c01-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
    cursor: pointer;
}

.w7c01-nav-item:hover,
.w7c01-nav-item.w7c01-active {
    color: var(--w7c01-primary);
}

.w7c01-nav-item:active {
    transform: scale(0.95);
}

.w7c01-nav-icon {
    font-size: 24px;
    margin-bottom: 4px;
}

.w7c01-nav-text {
    font-size: 10px;
    font-weight: 500;
}

/* Promo Link Styles */
.w7c01-promo-link {
    color: var(--w7c01-accent);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.w7c01-promo-link:hover {
    color: var(--w7c01-primary);
    text-decoration: underline;
}

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

.w7c01-testimonial {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 1.2rem;
}

.w7c01-testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.8rem;
}

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

/* Payment Methods */
.w7c01-payment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.w7c01-payment-item {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.w7c01-payment-icon {
    font-size: 2.4rem;
    color: var(--w7c01-success);
    margin-bottom: 0.5rem;
}

.w7c01-payment-name {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
}

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

.w7c01-winner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.05);
    padding: 1rem;
    border-radius: 8px;
}

.w7c01-winner-name {
    font-size: 1.3rem;
    color: var(--w7c01-text-light);
}

.w7c01-winner-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--w7c01-accent);
}

/* RTP Display */
.w7c01-rtp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.w7c01-rtp-item {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.w7c01-rtp-game {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

.w7c01-rtp-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--w7c01-success);
}

/* Desktop Navigation */
@media (min-width: 769px) {
    .w7c01-desktop-nav {
        display: flex;
        gap: 1.5rem;
    }

    .w7c01-desktop-nav a {
        color: var(--w7c01-text-light);
        text-decoration: none;
        font-size: 1.4rem;
        transition: color 0.3s ease;
    }

    .w7c01-desktop-nav a:hover {
        color: var(--w7c01-primary);
    }
}

@media (max-width: 768px) {
    .w7c01-desktop-nav {
        display: none;
    }
}

/* Utility Classes */
.w7c01-text-center { text-align: center; }
.w7c01-mb-1 { margin-bottom: 1rem; }
.w7c01-mb-2 { margin-bottom: 2rem; }
.w7c01-mt-2 { margin-top: 2rem; }
.w7c01-hidden-mobile { display: none; }

@media (min-width: 769px) {
    .w7c01-hidden-mobile { display: block; }
    .w7c01-hidden-desktop { display: none; }
}
