/* =============================
   VARIABLES & GLOBAL RESETS
   ============================= */
 :root {
    --bg-dark: #111111;
    --text-light: #f5f5f5;
    --red-alert: #d32f2f;
    --red-accent: #e53935;
    --orange-glow: #ff9800;
    --orange-dark: #f57c00;
    --wood-color: #5d4037;
    --card-bg: #1e1e1e;
    --border-glow: #ff5722;
    --gradient-fire: linear-gradient(135deg, var(--red-accent) 0%, var(--orange-glow) 100%);
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .btn-3d {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
}

.text-center { text-align: center; }
.highlight-text { color: var(--orange-glow); }
.section-title { font-size: 2.5rem; margin-bottom: 2rem; }
.section-title span { color: var(--red-accent); }

/* =============================
   LAYOUT CONTAINERS
   ============================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 0;
}

/* =============================
   TOP BANNER (RED TARJA)
   ============================= */
.top-banner {
    background-color: var(--red-alert);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.4);
    animation: flashInfo 3s infinite;
}

@keyframes flashInfo {
    0%, 100% { background-color: var(--red-alert); }
    50% { background-color: var(--red-accent); }
}

/* =============================
   HERO SECTION
   ============================= */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at center, #261b18 0%, #111 80%);
}

.fire-sparks {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('https://images.unsplash.com/photo-1596708688410-b4bd697fa223?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
}

.hero-text h1 span {
    color: var(--orange-glow);
    text-shadow: 0 0 10px var(--orange-glow);
}

.hero-text p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.payment-highlight {
    display: flex;
    align-items: center;
    background: rgba(229, 57, 53, 0.1);
    border-left: 5px solid var(--red-accent);
    padding: 15px;
    margin-bottom: 2.5rem;
    border-radius: 4px;
}

.payment-highlight i {
    color: var(--red-accent);
    margin-right: 15px;
    width: 30px;
    height: 30px;
}

.payment-highlight p {
    margin: 0;
    font-size: 0.95rem;
    color: #eee;
}

.hero-image {
    perspective: 1000px;
}

.knife-3d-wrapper {
    position: relative;
    animation: floatKnife 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.floating-knife {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(255, 152, 0, 0.2), 0 0 40px rgba(0,0,0,0.8);
    transform: rotateY(-15deg) rotateX(5deg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

@keyframes floatKnife {
    0%, 100% { transform: translateY(0) rotateY(-15deg); }
    50% { transform: translateY(-20px) rotateY(-5deg); filter: drop-shadow(0 40px 30px rgba(255, 87, 34, 0.4)); }
}

/* =============================
   BUTTONS & 3D ELEMENTS
   ============================= */
.btn-3d {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 35px;
    font-size: 1.2rem;
    color: #fff;
    background: var(--gradient-fire);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 0 var(--red-alert), 0 15px 20px rgba(0,0,0,0.4);
    transition: all 0.2s;
    position: relative;
    top: 0;
    margin-top: 10px;
    gap: 10px;
}

.btn-3d.huge {
    font-size: 1.5rem;
    padding: 20px 50px;
}

.btn-3d:active {
    top: 8px;
    box-shadow: 0 0 0 var(--red-alert), 0 5px 10px rgba(0,0,0,0.4);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 8px 0 var(--red-alert), 0 0 0 0 rgba(229, 57, 53, 0.7); }
    70% { transform: scale(1.02); box-shadow: 0 8px 0 var(--red-alert), 0 0 0 20px rgba(229, 57, 53, 0); }
    100% { transform: scale(1); box-shadow: 0 8px 0 var(--red-alert), 0 0 0 0 rgba(229, 57, 53, 0); }
}

.3d-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-top: 2px solid rgba(255,255,255,0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
}

.3d-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(255, 152, 0, 0.2);
    border-top: 2px solid var(--orange-glow);
}

/* =============================
   PAYMENT SECTION (WHY BUY)
   ============================= */
.payment-section {
    background: #181818;
    border-bottom: 2px solid var(--red-accent);
}

.payment-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    text-align: center;
}

.step-card i {
    width: 50px;
    height: 50px;
    color: var(--orange-glow);
    margin-bottom: 1rem;
}

.highlight-step {
    border: 2px solid var(--red-accent);
    transform: scale(1.05);
    background: linear-gradient(to bottom, #231212, var(--card-bg));
    box-shadow: 0 0 25px rgba(229, 57, 53, 0.3);
}

.highlight-step:hover {
    transform: scale(1.05) translateY(-10px);
}

/* =============================
   FEATURES GRIDS
   ============================= */
.features {
    background: url('https://images.unsplash.com/photo-1544025162-d76694265947?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    position: relative;
    z-index: 1;
}

.features::before {
    content: '';
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(17, 17, 17, 0.9);
    z-index: -1;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.feature-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.8);
    transition: transform 0.5s;
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-item:hover .feature-img {
    transform: scale(1.03) rotate(-2deg);
    border-color: var(--orange-glow);
}

.reverse:hover .feature-img {
    transform: scale(1.03) rotate(2deg);
}

.feature-text h3 {
    font-size: 2rem;
    color: var(--orange-glow);
    margin-bottom: 1rem;
}

.cta-spacing {
    margin-top: 5rem;
}

/* =============================
   WHAT'S IN THE BOX
   ============================= */
.pack-contents {
    background: #0a0a0a;
}

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

.kit-item .icon-wrap {
    background: var(--gradient-fire);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 0 15px var(--red-accent);
}

.kit-item h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

/* =============================
   SOCIAL PROOF / TESTIMONIALS
   ============================= */
.social-proof {
    background: #111;
    border-top: 1px solid #333;
}

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

.stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testi-card p {
    font-style: italic;
    color: #ccc;
    margin-bottom: 1rem;
}

.testi-card strong {
    color: var(--orange-glow);
}

/* =============================
   CHECKOUT AREA
   ============================= */
.checkout-area {
    background: radial-gradient(circle at center, #351515 0%, #111 100%);
    padding: 6rem 0;
}

.flex-checkout {
    display: flex;
    justify-content: center;
}

.buy-box {
    max-width: 600px;
    width: 100%;
    background: linear-gradient(145deg, #1e1e1e, #141414);
    border: 2px solid var(--red-accent);
    padding: 40px;
    text-align: center;
}

.offer-header h3 {
    color: var(--text-light);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.badge {
    background: var(--gradient-fire);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.price-area {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1.2rem;
}

.new-price {
    font-size: 1.5rem;
    color: #fff;
}

.new-price strong {
    font-size: 3rem;
    color: var(--orange-glow);
    font-family: var(--font-heading);
}

.benefit-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.benefit-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.benefit-list li i {
    color: #4caf50;
    margin-right: 15px;
}

.btn-buy {
    width: 100%;
    margin-bottom: 1rem;
}

.safe-text {
    font-size: 0.8rem;
    color: #aaa;
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
}

.safe-text i {
    color: var(--orange-glow);
    width: 25px;
    height: 25px;
    flex-shrink: 0;
}

/* =============================
   FOOTER
   ============================= */
footer {
    background: #050505;
    padding: 2rem 0;
    border-top: 1px solid #222;
}

.disclaimer {
    font-size: 0.7rem;
    color: #666;
    margin-top: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================
   SCROLL ANIMATION CLASSES 
   ============================= */
[data-anime] {
    opacity: 0;
    transition: 1s;
}

[data-anime="left"] { transform: translate3d(-50px, 0, 0); }
[data-anime="right"] { transform: translate3d(50px, 0, 0); }
[data-anime="up"] { transform: translate3d(0, 50px, 0); }

[data-anime].animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* =============================
   MEDIA QUERIES 
   ============================= */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .payment-highlight {
        flex-direction: column;
        text-align: center;
    }
    .payment-highlight i { margin: 0 0 10px 0; }
    
    .floating-knife { margin-top: 2rem; }
    
    .feature-item { grid-template-columns: 1fr; }
    .feature-item.reverse .feature-text { order: 2; }
    .feature-item.reverse .feature-img { order: 1; }
}

@media (max-width: 768px) {
    .payment-steps { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .btn-3d { font-size: 1rem; padding: 15px 20px; }
    .btn-3d.huge { font-size: 1.1rem; padding: 18px 25px; }
}
