/* Z-Spirit Promotion Page Styling */

:root {
    --z-bg: #0a0e17;
    --z-card-bg: rgba(255, 255, 255, 0.05);
    --z-primary: #ff9d00;
    --z-secondary: #ffb400;
    --z-accent: #f56565;
    --z-text: #e2e8f0;
    --z-text-muted: #a0aec0;
    --z-border: rgba(255, 157, 0, 0.1);
}

.z-body {
    background-color: var(--z-bg);
    color: var(--z-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: hidden;
}

.z-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.z-hero {
    position: relative;
    padding: 100px 0;
    background: radial-gradient(circle at center, rgba(255, 157, 0, 0.1) 0%, transparent 70%);
    overflow: hidden;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    text-align: left;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.z-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--z-border);
    transition: all 0.3s ease;
}

.z-hero-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 157, 0, 0.2);
}

.z-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, var(--z-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--z-text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-badge {
    margin-top: 50px;
}

.z-hero-actions {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.z-hero-actions a:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(255, 157, 0, 0.4) !important;
}

/* Feature Sections */
.z-section {
    padding: 80px 0;
}

.z-section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--z-primary);
}

.z-section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--z-text-muted);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.z-highlight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.z-highlight-card:hover {
    transform: translateY(-5px);
    border-color: var(--z-primary);
    box-shadow: 0 15px 40px rgba(255, 157, 0, 0.2);
}

.z-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--z-primary), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.highlight-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 157, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.highlight-icon span, .highlight-icon i {
    font-size: 1.8rem;
    color: var(--z-primary);
}

.z-highlight-card:hover .highlight-icon {
    background: var(--z-primary);
    transform: scale(1.1);
}

.z-highlight-card:hover .highlight-icon span, .z-highlight-card:hover .highlight-icon i {
    color: #121212;
}

.z-highlight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.z-highlight-card p {
    color: var(--z-text-muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

.highlight-features {
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--z-text-muted);
}

.feature-item span, .feature-item i {
    color: var(--z-primary);
    margin-right: 10px;
    font-size: 1rem;
}

/* Usage Flow */
.usage-flow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.usage-step {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.usage-step:hover {
    transform: translateY(-5px);
    border-color: var(--z-primary);
    box-shadow: 0 10px 30px rgba(255, 157, 0, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--z-primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--z-primary);
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--z-text);
}

.step-description {
    color: var(--z-text-muted);
    line-height: 1.6;
}

/* Scroll Reveal */
.z-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.z-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .z-hero h1 {
        font-size: 2.5rem;
    }
}
