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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Fire Background Animation */
.fire-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35 0%, #f72b1c 25%, #ff9558 50%, #ff6b35 75%, #f72b1c 100%);
    opacity: 0.03;
    animation: fireGlow 10s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes fireGlow {
    0%, 100% { opacity: 0.03; }
    50% { opacity: 0.06; }
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
}

.fire-emoji {
    font-size: 48px;
    animation: bounce 2s ease-in-out infinite;
    margin-bottom: 20px;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b35, #f72b1c, #ff9558);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

.highlight {
    color: #ffffff;
    display: block;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    margin-bottom: 10px;
}

.subtext {
    color: #888;
    font-size: 0.7em;
    font-weight: 400;
    display: block;
}

.author-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.author {
    color: #ff9558;
    font-weight: 600;
}

.rocket {
    font-size: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(10deg); }
}

.intro, .secret-info {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.power-text {
    color: #ff6b35;
    font-weight: 700;
    background: linear-gradient(90deg, #ff6b35, #ff9558);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.weapon-text {
    color: #f72b1c;
    font-weight: 700;
    position: relative;
    text-shadow: 0 0 10px rgba(247, 43, 28, 0.5);
}

/* Commands Section */
.commands-section {
    padding: 60px 0;
}

.arsenal-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #ff6b35, #ff9558);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.command-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 43, 28, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.command-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.command-card:hover::before {
    left: 100%;
}

.command-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.command-number {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255, 107, 53, 0.3);
    min-width: 50px;
}

.command-content {
    flex: 1;
}

.command-syntax {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: #ff9558;
    padding: 8px 16px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.command-desc {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Effectiveness Note */
.effectiveness-note {
    text-align: center;
    padding: 30px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.effectiveness-note p {
    font-size: 1.2rem;
    color: #ccc;
}

.super-effective {
    color: #ff6b35;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    padding: 60px 0 80px;
}

.cta-box {
    background: linear-gradient(135deg, rgba(247, 43, 28, 0.1), rgba(255, 107, 53, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ff6b35, #f72b1c, #ff9558);
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-box:hover::before {
    opacity: 0.3;
}

.cta-insider {
    font-size: 1.2rem;
    color: #ff9558;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-warning {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-final {
    font-size: 1.5rem;
    color: #ff6b35;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0 30px;
    }
    
    .commands-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .command-card {
        padding: 20px;
    }
    
    .command-number {
        font-size: 1.5rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
}

/* Pulse Animation for Commands */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

.command-card.active {
    animation: pulse 2s infinite;
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Glow Effect */
.glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #ff6b35, 0 0 20px #ff6b35, 0 0 30px #ff6b35;
    }
    to {
        text-shadow: 0 0 20px #ff6b35, 0 0 30px #ff6b35, 0 0 40px #ff6b35;
    }
}