:root {
    --toon-bg: #1a1a2e;
    --toon-text: #f8f9fa;
    --toon-primary: #ff4757;
    --toon-secondary: #2ed573;
    --toon-accent: #ffa502;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: var(--toon-bg); color: var(--toon-text);
    font-family: 'Comic Sans MS', 'Chalkboard SE', sans-serif;
    line-height: 1.6; overflow-x: hidden;
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 30px 30px; background-position: 0 0;
}

.toon-container { max-width: 1200px; margin: 0 auto; padding: 20px;}

/* Header */
.toon-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 40px; margin-bottom: 60px; margin-top: 20px;
    background: #2f3542; border: 4px solid #fff; border-radius: 50px;
    box-shadow: 8px 8px 0px rgba(0,0,0,0.5);
}
.toon-brand {
    font-size: 32px; font-weight: 900; color: var(--toon-accent);
    text-shadow: 3px 3px 0px #000; letter-spacing: 2px;
    transform: rotate(-3deg);
}
.toon-nav { display: flex; gap: 25px; }
.toon-nav a {
    font-size: 18px; font-weight: bold; color: #fff;
    padding: 8px 20px; border-radius: 25px; transition: all 0.2s;
    border: 3px solid transparent;
}
.toon-nav a:hover, .toon-nav a.active {
    background: var(--toon-primary); border-color: #fff;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.5); transform: translateY(-2px);
}

/* Hero */
.toon-hero {
    display: flex; align-items: center; justify-content: space-between;
    padding: 60px; margin-bottom: 80px; background: #3742fa;
    border: 5px solid #fff; border-radius: 40px;
    box-shadow: 15px 15px 0px rgba(0,0,0,0.5); position: relative;
}
.toon-hero::before {
    content: 'BOOM!'; position: absolute; top: -30px; left: -30px;
    background: var(--toon-accent); color: #000; font-size: 24px; font-weight: 900;
    padding: 15px; border-radius: 50%; border: 4px solid #fff;
    transform: rotate(-15deg); box-shadow: 5px 5px 0px rgba(0,0,0,0.5);
}
.th-content { flex: 1; padding-right: 40px;}
.th-content h1 {
    font-size: 55px; margin-bottom: 20px; color: #fff; line-height: 1.1;
    text-shadow: 4px 4px 0px #000; text-transform: uppercase;
}
.th-content p { font-size: 20px; margin-bottom: 40px; color: #dfe4ea; font-weight: bold;}

.th-visual {
    flex: 1; display: flex; justify-content: center; align-items: center;
}
.toon-rocket {
    width: 200px; height: 200px; background: var(--toon-primary);
    border: 6px solid #fff; border-radius: 50% 50% 10% 10%;
    position: relative; animation: flyToon 2s ease-in-out infinite alternate;
    box-shadow: inset -15px -15px 0px rgba(0,0,0,0.2), 10px 10px 0px rgba(0,0,0,0.5);
}
.toon-rocket::before {
    content: ''; position: absolute; top: 30px; left: 50%; transform: translateX(-50%);
    width: 60px; height: 60px; background: #7bed9f; border: 4px solid #fff; border-radius: 50%;
}
.toon-rocket::after {
    content: ''; position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%);
    width: 40px; height: 60px; background: var(--toon-accent); border: 4px solid #fff;
    border-radius: 0 0 50% 50%; animation: fire 0.5s infinite alternate;
}
@keyframes flyToon { 0% { transform: translateY(0); } 100% { transform: translateY(-30px); } }
@keyframes fire { 0% { height: 40px; background: var(--toon-accent); } 100% { height: 70px; background: #ff7f50; } }

.btn-toon {
    display: inline-block; padding: 15px 40px; font-size: 22px; font-weight: 900;
    color: #000; background: var(--toon-accent); border-radius: 30px;
    border: 4px solid #fff; box-shadow: 6px 6px 0px rgba(0,0,0,0.5);
    transition: all 0.1s; margin-right: 20px; text-transform: uppercase;
}
.btn-toon:active { transform: translate(4px, 4px); box-shadow: 2px 2px 0px rgba(0,0,0,0.5); }
.btn-toon-alt {
    display: inline-block; padding: 15px 40px; font-size: 22px; font-weight: 900;
    color: #fff; background: var(--toon-secondary); border-radius: 30px;
    border: 4px solid #fff; box-shadow: 6px 6px 0px rgba(0,0,0,0.5);
    transition: all 0.1s; text-transform: uppercase;
}
.btn-toon-alt:active { transform: translate(4px, 4px); box-shadow: 2px 2px 0px rgba(0,0,0,0.5); }

/* Stats */
.toon-stats {
    display: flex; gap: 30px; margin-bottom: 80px;
}
.ts-item {
    flex: 1; padding: 30px; text-align: center; background: #2f3542;
    border: 4px solid #fff; border-radius: 25px; box-shadow: 8px 8px 0px rgba(0,0,0,0.5);
    transform: rotate(2deg); transition: transform 0.3s;
}
.ts-item:nth-child(even) { transform: rotate(-2deg); }
.ts-item:hover { transform: rotate(0deg) scale(1.05); }
.ts-val { font-size: 48px; font-weight: 900; color: var(--toon-accent); text-shadow: 3px 3px 0px #000; margin-bottom: 5px;}
.ts-lbl { font-size: 18px; font-weight: bold; color: #fff; text-transform: uppercase;}

/* Features */
.toon-features { margin-bottom: 80px;}
.tf-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px;}
.tf-card {
    padding: 40px; background: #57606f; border: 5px solid #fff; border-radius: 30px;
    box-shadow: 10px 10px 0px rgba(0,0,0,0.5); position: relative;
}
.tf-card::before {
    content: '★'; position: absolute; top: -25px; right: -25px;
    background: var(--toon-primary); color: #fff; font-size: 30px;
    width: 60px; height: 60px; display: flex; justify-content: center; align-items: center;
    border-radius: 50%; border: 4px solid #fff; box-shadow: 4px 4px 0px rgba(0,0,0,0.5);
}
.tf-card h3 { font-size: 28px; font-weight: 900; margin-bottom: 15px; color: var(--toon-accent); text-shadow: 2px 2px 0px #000;}
.tf-card p { font-size: 18px; color: #fff; font-weight: bold;}

/* Nodes */
.toon-nodes { margin-bottom: 80px; padding: 50px; background: var(--toon-secondary); border: 5px solid #fff; border-radius: 40px; box-shadow: 12px 12px 0px rgba(0,0,0,0.5); text-align: center;}
.toon-nodes h2 { font-size: 40px; font-weight: 900; margin-bottom: 40px; color: #fff; text-shadow: 3px 3px 0px #000; text-transform: uppercase;}
.tn-list { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center;}
.tn-item {
    padding: 15px 30px; font-size: 20px; font-weight: 900; color: #000;
    background: var(--toon-accent); border: 4px solid #fff; border-radius: 25px;
    box-shadow: 5px 5px 0px rgba(0,0,0,0.5);
}

/* FAQ */
.toon-faq { margin-bottom: 100px; max-width: 800px; margin-left: auto; margin-right: auto;}
.toon-faq h2 { font-size: 40px; font-weight: 900; margin-bottom: 40px; color: #fff; text-align: center; text-shadow: 3px 3px 0px #000;}
.t-faq-item {
    margin-bottom: 30px; padding: 30px; background: #2f3542; border: 4px solid #fff;
    border-radius: 25px; box-shadow: 8px 8px 0px rgba(0,0,0,0.5);
}
.t-fq { font-size: 22px; font-weight: 900; color: var(--toon-primary); margin-bottom: 15px; text-shadow: 1px 1px 0px #000;}
.t-fa { font-size: 18px; color: #fff; font-weight: bold;}

footer { text-align: center; padding: 40px 0; color: #a4b0be; font-size: 16px; font-weight: bold; text-transform: uppercase;}

@media (max-width: 900px) {
    .toon-header { flex-direction: column; gap: 20px; padding: 20px; border-radius: 30px;}
    .toon-hero { flex-direction: column; text-align: center; padding: 40px 20px;}
    .th-content { padding-right: 0; margin-bottom: 60px;}
    .toon-stats { flex-direction: column; }
    .ts-item { transform: rotate(0); }
    .tf-grid { grid-template-columns: 1fr; }
    .btn-toon, .btn-toon-alt { display: block; margin: 15px auto; width: 80%;}
}