/*
Theme Name: SHEN Theme
Description: Premium gaming theme for SHEN digital store with futuristic design
Version: 1.0
Author: SHEN
Text Domain: shen-theme
*/

/* CSS Variables for SHEN Brand Colors */
:root {
    --shen-primary: #39ff14;    /* Main SHEN green from preview.html */
    --shen-secondary: #00ff88;  /* Secondary green from preview.html */
    --shen-accent: #00ff7f;     /* Accent green from preview.html */
    --shen-dark: #000000;       /* Pure black background */
    --shen-gray: #0a0a0a;       /* Dark gray for sections */
    --shen-text: #ffffff;       /* White text */
    --shen-text-muted: rgba(255, 255, 255, 0.6);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 300;
}

/* Fix default link colors */
a {
    color: #39ff14;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #00ff88;
}

a:visited {
    color: #39ff14;
}

/* Ensure all text elements use proper colors */
p, span, div, h1, h2, h3, h4, h5, h6 {
    color: inherit;
}

/* Override any blue text colors */
.text-blue, .blue-text {
    color: #ffffff !important;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(57, 255, 20, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

.logo {
    display: block;
    text-decoration: none;
}

.logo-image {
    height: 32px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 300;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #39ff14;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #39ff14;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, rgba(57, 255, 20, 0.03) 0%, rgba(0, 0, 0, 1) 70%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="2" height="2" patternUnits="userSpaceOnUse"><path d="M 2 0 L 0 0 0 2" fill="none" stroke="rgba(57,255,20,0.1)" stroke-width="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.3);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: #39ff14;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.stars {
    color: #39ff14;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 100;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #39ff14 0%, #00ff88 50%, #39ff14 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 8px;
    text-transform: uppercase;
    line-height: 0.9;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-weight: 100;
    letter-spacing: 3px;
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 800px;
    margin: 0 auto 3rem;
    font-weight: 300;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #39ff14, #00ff88);
    color: #000;
    text-decoration: none;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(57, 255, 20, 0.3);
    color: #000;
    background: linear-gradient(135deg, #00ff88, #39ff14);
}

/* Section Styles */
.section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 100;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Best Sellers */
.bestsellers {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.bestseller-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(57, 255, 20, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.bestseller-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(57, 255, 20, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.bestseller-card:hover::before {
    opacity: 1;
}

.bestseller-card:hover {
    transform: translateY(-10px);
    border-color: rgba(57, 255, 20, 0.3);
    box-shadow: 0 30px 60px rgba(57, 255, 20, 0.1);
}

.bestseller-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.1), rgba(0, 255, 136, 0.1));
    border: 2px solid rgba(57, 255, 20, 0.3);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #39ff14;
    position: relative;
    z-index: 2;
}

.product-icon-img {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.bestseller-card:hover .product-icon-img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.product-title {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #39ff14;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.current-price {
    font-size: 2rem;
    font-weight: 300;
    color: #39ff14;
    letter-spacing: 1px;
}

.original-price {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.purchase-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #39ff14, #00ff88);
    color: #000000;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.2);
    text-decoration: none;
    display: inline-block;
}

.purchase-btn:hover {
    background: linear-gradient(135deg, #00ff88, #39ff14);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(57, 255, 20, 0.3);
}

.purchase-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(57, 255, 20, 0.2);
}

/* Bundles */
.bundles {
    background: #000000;
}

.bundle-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(57, 255, 20, 0.1);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    transition: all 0.5s ease;
    overflow: hidden;
}

.bundle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(57, 255, 20, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.bundle-card:hover::before {
    opacity: 1;
}

.bundle-card:hover {
    transform: translateY(-10px);
    border-color: rgba(57, 255, 20, 0.3);
    box-shadow: 0 30px 60px rgba(57, 255, 20, 0.1);
}

.discount-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #00ff7f, #00cc66);
    color: #000000;
    padding: 0.8rem 1.2rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 255, 127, 0.3);
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 85%);
    min-width: 90px;
    text-align: center;
}

.bundle-title {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #39ff14;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.bundle-price {
    font-size: 2.5rem;
    font-weight: 300;
    color: #39ff14;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.bundle-items {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.bundle-icon-img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.bundle-card:hover .bundle-icon-img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.bundle-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.bundle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(0, 255, 127, 0.1);
    border: 1px solid rgba(0, 255, 127, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.bundle-card:hover .bundle-icon {
    background: rgba(0, 255, 127, 0.2);
    border-color: #00ff7f;
    transform: scale(1.1);
}

.bundle-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.bundle-description {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    margin-top: 5rem;
}

.step-card {
    text-align: center;
    padding: 3rem;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.1), rgba(0, 255, 136, 0.1));
    border: 2px solid rgba(57, 255, 20, 0.3);
    color: #39ff14;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 300;
    margin: 0 auto 2rem;
    letter-spacing: 1px;
}

.step-title {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #39ff14;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.step-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 300;
}

/* FAQ */
.faq {
    background: #000000;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(57, 255, 20, 0.1);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(57, 255, 20, 0.3);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 300;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    color: #ffffff;
}

.faq-question:hover {
    background: rgba(57, 255, 20, 0.05);
}

.faq-answer {
    padding: 0 2rem 2rem;
    color: rgba(255, 255, 255, 0.7);
    display: none;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
}

.faq-answer.active {
    display: block;
}

.faq-icon {
    color: #39ff14;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    border-top: 1px solid rgba(57, 255, 20, 0.1);
    padding: 5rem 0 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #39ff14;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    line-height: 1.8;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
    font-size: 1.1rem;
}

.footer-section ul li a:hover {
    color: #39ff14;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(57, 255, 20, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        letter-spacing: 4px;
    }
    
    .logo {
        font-size: 2rem;
        letter-spacing: 2px;
    }
}

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

.bestseller-image {
    animation: float 6s ease-in-out infinite;
}

.step-number {
    animation: float 8s ease-in-out infinite;
}

/* WordPress specific styles */
.site-header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(57, 255, 20, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

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

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 300;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #39ff14;
    transition: width 0.3s ease;
}

.main-navigation a:hover {
    color: #39ff14;
}

.main-navigation a:hover::after {
    width: 100%;
}

.site-footer {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    border-top: 1px solid rgba(57, 255, 20, 0.1);
    padding: 5rem 0 3rem;
}

.main-content {
    margin-top: 80px;
}

/* Button styles */
.btn, button, input[type="submit"], input[type="button"] {
    background: linear-gradient(135deg, #39ff14, #00ff88);
    color: #000000;
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.2);
}

.btn:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover {
    background: linear-gradient(135deg, #00ff88, #39ff14);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(57, 255, 20, 0.3);
}

/* Form styles */
input, textarea, select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 10px;
    padding: 1rem;
    color: #ffffff;
    font-family: inherit;
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #39ff14;
    box-shadow: 0 0 0 2px rgba(57, 255, 20, 0.2);
}

/* Card styles */
.card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(57, 255, 20, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: rgba(57, 255, 20, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(57, 255, 20, 0.1);
}
