/**
 * SkinsChoice Homepage Styles
 * Version: 1.0.2
 */

/* Hide page title on homepage */
.home .page-title,
.home .entry-title,
.home article > header,
.home .woocommerce-products-header,
.home h1.page-title,
.home h1.entry-title,
.page-template-default.home .entry-header,
body.home .entry-title,
body.page .entry-header h1,
.home .ast-archive-description, /* Astra theme */
.home .page-header, /* Generic */
.home .hentry > header,
.home main > article > header:first-child {
    display: none !important;
}

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Exo+2:wght@300;400;500;600;700&display=swap');

:root {
    --sch-bg-dark: #0a0a0a;
    --sch-bg-card: #1a1a1a;
    --sch-bg-card-hover: #222;
    --sch-accent: #c8ff00;
    --sch-accent-secondary: #00d4ff;
    --sch-accent-dim: rgba(200, 255, 0, 0.1);
    --sch-text-primary: #ffffff;
    --sch-text-secondary: #888;
    --sch-border: #2a2a2a;
    --sch-gradient-accent: linear-gradient(135deg, #c8ff00 0%, #00d4ff 100%);
}

.sc-home * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.sc-home {
    font-family: 'Exo 2', sans-serif;
    background: var(--sch-bg-dark);
    color: var(--sch-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   HERO SECTION
   ============================================ */
.sc-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.sc-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(200, 255, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    animation: sc-pulse 15s ease-in-out infinite;
}

@keyframes sc-pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.sc-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.sc-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sc-hero-content {
    max-width: 600px;
}

.sc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sch-accent-dim);
    border: 1px solid var(--sch-accent);
    color: var(--sch-accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    animation: sc-fadeInUp 0.6s ease;
}

.sc-hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--sch-accent);
    border-radius: 50%;
    animation: sc-blink 1.5s infinite;
}

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

.sc-hero h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 24px;
    animation: sc-fadeInUp 0.6s ease 0.1s both;
}

.sc-hero h1 .sc-gradient-text {
    background: var(--sch-gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sc-hero-description {
    font-size: 18px;
    color: var(--sch-text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    animation: sc-fadeInUp 0.6s ease 0.2s both;
}

.sc-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: sc-fadeInUp 0.6s ease 0.3s both;
}

.sc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.sc-btn-primary {
    background: var(--sch-accent);
    color: #000;
}

.sc-btn-primary:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(200, 255, 0, 0.3);
}

.sc-btn-secondary {
    background: transparent;
    border: 2px solid var(--sch-border);
    color: var(--sch-text-primary);
}

.sc-btn-secondary:hover {
    border-color: var(--sch-accent);
    color: var(--sch-accent);
}

.sc-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--sch-border);
    animation: sc-fadeInUp 0.6s ease 0.4s both;
}

.sc-stat {
    text-align: left;
}

.sc-stat-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--sch-accent);
    line-height: 1;
}

.sc-stat-label {
    font-size: 13px;
    color: var(--sch-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual */
.sc-hero-visual {
    position: relative;
    animation: sc-fadeInRight 0.8s ease 0.3s both;
}

.sc-hero-image-container {
    position: relative;
    padding: 20px;
}

.sc-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 255, 0, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    animation: sc-glow-pulse 3s ease-in-out infinite;
}

@keyframes sc-glow-pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.sc-floating-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sc-float-card {
    background: var(--sch-bg-card);
    border: 1px solid var(--sch-border);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    animation: sc-float 4s ease-in-out infinite;
    text-decoration: none;
    display: block;
}

.sc-float-card:nth-child(2) { animation-delay: 0.5s; }
.sc-float-card:nth-child(3) { animation-delay: 1s; }
.sc-float-card:nth-child(4) { animation-delay: 1.5s; }

.sc-float-card:hover {
    border-color: var(--sch-accent);
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.sc-float-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    border-radius: 8px;
}

.sc-float-card-name {
    font-size: 12px;
    color: var(--sch-text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sc-float-card-price {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--sch-accent);
}

@keyframes sc-fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes sc-fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ============================================
   GAMES SECTION
   ============================================ */
.sc-games {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--sch-bg-dark) 0%, #0d0d0d 100%);
}

.sc-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sc-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.sc-section-badge {
    display: inline-block;
    background: var(--sch-accent-dim);
    color: var(--sch-accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.sc-section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.sc-section-subtitle {
    font-size: 16px;
    color: var(--sch-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.sc-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sc-game-card {
    background: var(--sch-bg-card);
    border: 1px solid var(--sch-border);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.sc-game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--sch-gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sc-game-card:hover {
    border-color: var(--sch-accent);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.sc-game-card:hover::before {
    opacity: 1;
}

.sc-game-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.sc-game-card:hover .sc-game-icon {
    transform: scale(1.05);
}

.sc-game-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sc-game-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.sc-game-items {
    font-size: 14px;
    color: var(--sch-text-secondary);
    margin-bottom: 20px;
}

.sc-game-items span {
    color: var(--sch-accent);
    font-weight: 600;
}

.sc-game-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--sch-border);
    border-radius: 8px;
    color: var(--sch-text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sc-game-btn:hover {
    background: var(--sch-accent);
    border-color: var(--sch-accent);
    color: #000;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.sc-features {
    padding: 100px 20px;
    position: relative;
}

.sc-features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.sc-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.sc-feature-card {
    background: var(--sch-bg-card);
    border: 1px solid var(--sch-border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.sc-feature-card:hover {
    border-color: var(--sch-accent);
    transform: translateY(-5px);
}

.sc-feature-icon {
    width: 64px;
    height: 64px;
    background: var(--sch-accent-dim);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    transition: all 0.3s ease;
}

.sc-feature-card:hover .sc-feature-icon {
    background: var(--sch-accent);
    transform: scale(1.1);
}

.sc-feature-card:hover .sc-feature-icon span {
    filter: brightness(0);
}

.sc-feature-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.sc-feature-text {
    font-size: 14px;
    color: var(--sch-text-secondary);
    line-height: 1.6;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.sc-how {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0d0d0d 0%, var(--sch-bg-dark) 100%);
}

.sc-how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.sc-how-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--sch-accent), var(--sch-accent), transparent);
    opacity: 0.3;
}

.sc-how-step {
    text-align: center;
    position: relative;
}

.sc-how-number {
    width: 60px;
    height: 60px;
    background: var(--sch-bg-card);
    border: 2px solid var(--sch-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--sch-accent);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.sc-how-step:hover .sc-how-number {
    background: var(--sch-accent);
    color: #000;
    transform: scale(1.1);
}

.sc-how-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.sc-how-text {
    font-size: 14px;
    color: var(--sch-text-secondary);
}

/* ============================================
   CTA SECTION
   ============================================ */
.sc-cta {
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sc-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at center, rgba(200, 255, 0, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at center, rgba(0, 212, 255, 0.05) 0%, transparent 80%);
}

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

.sc-cta h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.sc-cta p {
    font-size: 18px;
    color: var(--sch-text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ============================================
   TRUST SECTION
   ============================================ */
.sc-trust {
    padding: 60px 20px;
    border-top: 1px solid var(--sch-border);
    border-bottom: 1px solid var(--sch-border);
}

.sc-trust-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.sc-trust-icon {
    width: 48px;
    height: 48px;
    background: var(--sch-accent-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.sc-trust-text {
    text-align: left;
}

.sc-trust-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--sch-text-primary);
}

.sc-trust-label {
    font-size: 12px;
    color: var(--sch-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .sc-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .sc-hero-content {
        max-width: 100%;
    }
    
    .sc-hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .sc-hero-buttons {
        justify-content: center;
    }
    
    .sc-hero-stats {
        justify-content: center;
    }
    
    .sc-hero-visual {
        order: -1;
    }
    
    .sc-floating-cards {
        max-width: 400px;
    }
    
    .sc-games-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .sc-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sc-how-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .sc-how-grid::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .sc-hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }
    
    .sc-hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .sc-stat {
        text-align: center;
    }
    
    .sc-floating-cards {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .sc-float-card {
        padding: 16px;
    }
    
    .sc-float-card img {
        width: 60px;
        height: 60px;
    }
    
    .sc-features-grid,
    .sc-how-grid {
        grid-template-columns: 1fr;
    }
    
    .sc-btn {
        width: 100%;
        justify-content: center;
    }
    
    .sc-trust-grid {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
}
