/* Style: index.styles06.css */

/* Style: index.styles06.css - Vibrant Orange (Energetic) Theme */

:root {
    --bg-dark: #110800;
    --accent-orange: #ff6a00;
    --bright-orange: #ff9d00;
    --white-soft: #fff5ed;
    --glass: rgba(255, 106, 0, 0.05);
    --glass-border: rgba(255, 157, 0, 0.2);
}

* { box-sizing: border-box; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg-dark);
    color: var(--white-soft);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Nền hiệu ứng lửa bùng cháy nhẹ */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(255, 106, 0, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 10% 80%, rgba(255, 157, 0, 0.08) 0%, transparent 40%);
    z-index: -1;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Hero Section */
.hero {
    padding: 110px 0 70px;
    text-align: center;
}

.badge {
    background: var(--accent-orange);
    color: #fff;
    padding: 8px 25px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
}

h1.main-title {
    font-size: clamp(2.5rem, 8vw, 4.2rem);
    margin: 25px 0;
    background: linear-gradient(135deg, #fff 30%, var(--bright-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: -1px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--accent-orange);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 106, 0, 0.03);
    transform: scale(1.03);
    border-color: var(--accent-orange);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.icon-box {
    font-size: 3.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 15px rgba(255, 106, 0, 0.4));
}

.feature-card h3 {
    font-size: 1.8rem;
    margin: 10px 0;
    color: #fff;
    font-weight: 800;
}

.feature-card p.subtitle {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--bright-orange);
}

.feature-card p.description {
    color: #b5a89e;
    font-size: 0.95rem;
}

.btn-go {
    margin-top: auto;
    display: flex;
    align-items: center;
    color: var(--accent-orange);
    font-weight: 800;
    font-size: 0.9rem;
    padding-top: 20px;
}

/* Stats Section */
.stats-bar {
    display: flex;
    justify-content: space-around;
    padding: 60px 0;
    border-top: 2px dashed var(--glass-border);
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item h2 { 
    font-size: 3rem; 
    margin: 0; 
    color: var(--bright-orange);
    font-weight: 900;
}
.stat-item p { margin: 5px 0 0; color: #887e76; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; }

/* Footer */
footer {
    padding: 80px 0 40px;
    text-align: center;
}

.cta-btn {
    background: linear-gradient(135deg, var(--accent-orange), var(--bright-orange));
    color: #000;
    padding: 18px 50px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(255, 106, 0, 0.4);
    text-transform: uppercase;
}

.cta-btn:hover {
    transform: translateY(-3px) rotate(-1deg);
    box-shadow: 0 15px 35px rgba(255, 106, 0, 0.6);
}

@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
}
