/* ============================================
   I AM DICTATOR - MAIN STYLESHEET
   The most authoritarian CSS you'll ever see
   ============================================ */

/* ========== ROOT VARIABLES ========== */
:root {
    --color-dictator-red: #DC143C;
    --color-dark: #1a1a1a;
    --color-darker: #0f0f0f;
    --color-gold: #FFD700;
    --color-white: #ffffff;
    --color-gray: #cccccc;
    --color-gray-dark: #666666;

    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    --shadow-glow-red: 0 0 20px rgba(220, 20, 60, 0.5);
    --shadow-glow-gold: 0 0 20px rgba(255, 215, 0, 0.5);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* ========== PARTICLES BACKGROUND ========== */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--color-darker) 0%, var(--color-dark) 100%);
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 900;
    letter-spacing: 2px;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-dictator-red);
    text-transform: uppercase;
    text-shadow: var(--shadow-glow-red);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

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

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--color-dictator-red);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(var(--shadow-glow-red));
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-dictator-red);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-dictator-red);
    text-shadow: var(--shadow-glow-red);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-dictator-red);
    transition: all 0.3s ease;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn span {
    margin-right: 10px;
}

.btn-primary {
    background: var(--color-dictator-red);
    color: var(--color-white);
    box-shadow: var(--shadow-glow-red);
}

.btn-primary:hover {
    background: #b01030;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(220, 20, 60, 0.8);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-dark);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--color-gold);
    color: var(--color-dark);
    box-shadow: var(--shadow-glow-gold);
    font-weight: 900;
}

.btn-gold:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

.btn-download {
    background: var(--color-dictator-red);
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.2rem;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    position: relative;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 5rem;
    color: var(--color-dictator-red);
    margin-bottom: 1rem;
    text-shadow: var(--shadow-glow-red);
    line-height: 1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hero-tagline {
    font-size: 2rem;
    font-family: var(--font-display);
    color: var(--color-white);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.hero-description strong {
    color: var(--color-dictator-red);
    font-weight: 900;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(220, 20, 60, 0.2);
    border: 1px solid var(--color-dictator-red);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-white);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dictator-main {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 0 50px rgba(220, 20, 60, 0.8));
    z-index: 2;
    border-radius: 10px;
}

.dictator-main video,
.dictator-main[src$=".mp4"] {
    object-fit: contain;
}

.glow-effect {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.3) 0%, transparent 70%);
    z-index: 1;
    animation: pulse-glow 3s ease-in-out infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--color-gray);
    font-size: 0.9rem;
    font-weight: 700;
}

.arrow-down {
    width: 30px;
    height: 30px;
    border-left: 3px solid var(--color-dictator-red);
    border-bottom: 3px solid var(--color-dictator-red);
    transform: rotate(-45deg);
    margin: 10px auto;
    animation: bounce 2s infinite;
}

/* ========== DREAM SECTION ========== */
.dream-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--color-dark) 0%, rgba(220, 20, 60, 0.05) 50%, var(--color-darker) 100%);
}

.dream-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.dream-title {
    font-size: 3rem;
    font-family: var(--font-display);
    color: var(--color-white);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(220, 20, 60, 0.3);
}

.dream-subtitle {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 2.5rem;
    font-weight: 700;
    line-height: 1.6;
}

.dream-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.dream-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.dream-item:hover {
    border-color: var(--color-dictator-red);
    background: rgba(220, 20, 60, 0.08);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.dream-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.dream-item h3 {
    font-size: 1.8rem;
    color: var(--color-dictator-red);
    margin-bottom: 1rem;
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.dream-item p {
    color: var(--color-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

.dream-footer {
    font-size: 1.4rem;
    color: var(--color-white);
    font-weight: 700;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(220, 20, 60, 0.1);
    border-radius: 10px;
    border: 2px solid var(--color-dictator-red);
}

.dream-footer strong {
    color: var(--color-dictator-red);
    text-transform: uppercase;
    font-family: var(--font-display);
    letter-spacing: 2px;
}

/* ========== PEASANT SECTION ========== */
.peasant-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-darker) 100%);
}

.peasant-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.peasant-problem,
.peasant-solution {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid;
}

.peasant-problem {
    border-color: #666;
}

.peasant-solution {
    border-color: var(--color-dictator-red);
    background: rgba(220, 20, 60, 0.1);
}

.problem-icon,
.solution-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.peasant-grid h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.peasant-grid p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.arrow-right {
    font-size: 4rem;
    color: var(--color-dictator-red);
    animation: slide-right 1.5s ease-in-out infinite;
}

kbd {
    background: var(--color-dark);
    border: 2px solid var(--color-dictator-red);
    padding: 5px 10px;
    border-radius: 5px;
    font-family: monospace;
    font-weight: bold;
    color: var(--color-gold);
    box-shadow: var(--shadow-glow-red);
}

/* ========== FEATURES SECTION ========== */
.features {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--color-dictator-red);
    background: rgba(220, 20, 60, 0.1);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow-red);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.feature-card p {
    color: var(--color-gray);
    font-size: 1.05rem;
}

/* ========== SCREENSHOTS SECTION ========== */
.screenshots {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--color-darker) 0%, var(--color-dark) 50%, var(--color-darker) 100%);
}

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

.screenshot-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.screenshot-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
    background: linear-gradient(145deg, rgba(220, 20, 60, 0.1), rgba(255, 215, 0, 0.05));
    padding: 15px;
    border-radius: 15px;
    border: 3px solid rgba(220, 20, 60, 0.3);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(220, 20, 60, 0.2),
        inset 0 0 20px rgba(220, 20, 60, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
}

.screenshot-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
        var(--color-dictator-red),
        var(--color-gold),
        var(--color-dictator-red));
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.screenshot-frame:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--color-gold);
    box-shadow:
        0 15px 60px rgba(220, 20, 60, 0.4),
        0 0 50px rgba(255, 215, 0, 0.3),
        inset 0 0 30px rgba(220, 20, 60, 0.15);
}

.screenshot-frame:hover::before {
    opacity: 0.3;
    animation: border-glow 3s linear infinite;
}

.screenshot-img {
    width: 100%;
    border-radius: 8px;
    display: block;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.screenshot-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1.5rem;
    padding: 10px 20px;
    background: rgba(220, 20, 60, 0.2);
    border: 2px solid var(--color-dictator-red);
    border-radius: 25px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--color-gold);
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

.label-icon {
    font-size: 1.5rem;
}

.screenshot-desc {
    margin-top: 1rem;
    color: var(--color-gray);
    font-size: 1.05rem;
    max-width: 300px;
}

.screenshots-note {
    text-align: center;
    padding: 2rem;
    background: rgba(220, 20, 60, 0.1);
    border: 2px solid var(--color-dictator-red);
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.screenshots-note p {
    font-size: 1.2rem;
    color: var(--color-white);
    margin: 0;
}

.screenshots-note strong {
    color: var(--color-gold);
}

@keyframes border-glow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* ========== HOW IT WORKS SECTION ========== */
.how-it-works {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--color-darker) 0%, var(--color-dark) 100%);
}

.steps {
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--color-dictator-red);
    color: var(--color-white);
    font-size: 2.5rem;
    font-family: var(--font-display);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-glow-red);
}

.step-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--color-gold);
}

.step-content p {
    color: var(--color-gray);
    font-size: 1.1rem;
}

.step-content code {
    background: var(--color-dark);
    padding: 3px 8px;
    border-radius: 3px;
    color: var(--color-gold);
    font-family: monospace;
}

.demo-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-darker);
    border: 2px solid var(--color-dictator-red);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-glow-red);
}

.demo-header {
    background: var(--color-dictator-red);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.demo-title {
    font-family: monospace;
    font-weight: bold;
    font-size: 1.1rem;
}

.demo-content {
    padding: 2rem;
    background: #0a0a0a;
}

.typing-demo {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    line-height: 1.8;
    color: #00ff00;
}

.typing-demo .highlight {
    color: var(--color-gold);
    font-weight: bold;
}

.typing-demo .success {
    color: var(--color-dictator-red);
    font-weight: bold;
}

/* ========== PRICING SECTION ========== */
.pricing {
    padding: 60px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-grid-two {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    max-width: 900px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #333;
    border-radius: 10px;
    padding: 3rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
}

.pricing-card.featured {
    border-color: var(--color-gold);
    background: rgba(255, 215, 0, 0.05);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow-gold);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-dictator-red);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.plan-badge.popular {
    background: var(--color-gold);
    color: var(--color-dark);
    font-weight: 900;
    animation: pulse-scale 2s ease-in-out infinite;
}

.plan-name {
    font-size: 2.2rem;
    text-align: center;
    margin: 2rem 0 1rem;
    color: var(--color-white);
}

.plan-price {
    text-align: center;
    margin-bottom: 1rem;
}

.currency {
    font-size: 2rem;
    color: var(--color-gray);
    vertical-align: super;
}

.amount {
    font-size: 4rem;
    font-family: var(--font-display);
    color: var(--color-dictator-red);
}

.period {
    font-size: 1.2rem;
    color: var(--color-gray);
}

.plan-description {
    text-align: center;
    color: var(--color-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.05rem;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

.pricing-guarantee {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--color-gold);
    border-radius: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-guarantee p {
    font-size: 1.1rem;
    color: var(--color-white);
    margin: 0;
}

.pricing-guarantee strong {
    color: var(--color-gold);
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-darker) 100%);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

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

.testimonial-text {
    font-style: italic;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--color-white);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--color-dictator-red);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ========== DOWNLOAD SECTION ========== */
.download {
    padding: 60px 0;
}

.download-box {
    background: rgba(220, 20, 60, 0.1);
    border: 2px solid var(--color-dictator-red);
    border-radius: 10px;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.download-info h3 {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.download-info p {
    color: var(--color-gray);
    font-size: 1.1rem;
}

.file-size {
    font-size: 0.9rem !important;
    color: var(--color-gray-dark);
}

.requirements {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
}

.requirements h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.requirements ul {
    list-style: none;
}

.requirements li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

/* ========== CTA SECTION ========== */
.cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--color-dictator-red) 0%, #8b0000 100%);
    text-align: center;
}

.cta h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-note {
    margin-top: 1rem;
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--color-darker);
    padding: 60px 0 30px;
    border-top: 2px solid var(--color-dictator-red);
}

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

.footer-section h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-dictator-red);
}

.footer-section p {
    color: var(--color-gray);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--color-gray-dark);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--color-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-dictator-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-gray-dark);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* ========== USE CASES SECTION ========== */
.use-cases {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-darker) 50%, var(--color-dark) 100%);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.use-case-card:hover {
    border-color: var(--color-dictator-red);
    background: rgba(220, 20, 60, 0.05);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.3);
}

.use-case-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.use-case-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.use-case-header h3 {
    font-size: 2rem;
    color: var(--color-white);
    margin: 0;
    font-family: var(--font-display);
    letter-spacing: 2px;
}

.use-case-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray);
    margin: 0.3rem 0 0 0;
}

.demo-window {
    background: #0a0a0a;
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.window-header {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(220, 20, 60, 0.3);
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.window-dots span:nth-child(1) {
    background: #ff5f56;
}

.window-dots span:nth-child(2) {
    background: #ffbd2e;
}

.window-dots span:nth-child(3) {
    background: #27c93f;
}

.window-title {
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--color-gray);
    font-weight: 600;
}

.window-content {
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 1.8;
    min-height: 120px;
}

.code-line {
    margin: 0.5rem 0;
    color: #e0e0e0;
}

.code-line .keyword {
    color: #ff79c6;
    font-weight: 600;
}

.code-line .function {
    color: #50fa7b;
}

.code-line .string {
    color: #f1fa8c;
}

.code-line .comment {
    color: #6272a4;
    font-style: italic;
}

.code-line .variable {
    color: #8be9fd;
}

.terminal-line {
    margin: 0.5rem 0;
    color: #00ff00;
}

.terminal-line .prompt {
    color: var(--color-gold);
    font-weight: bold;
}

.terminal-line .command {
    color: #8be9fd;
}

.terminal-line .output {
    color: #e0e0e0;
}

.message-line {
    margin: 0.8rem 0;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    color: #e0e0e0;
}

.message-line .sender {
    color: var(--color-dictator-red);
    font-weight: 700;
}

.message-line .time {
    color: var(--color-gray-dark);
    font-size: 0.85rem;
}

.step-indicator {
    color: var(--color-dictator-red);
    font-weight: 900;
    margin-right: 8px;
}

.use-case-benefit {
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid var(--color-dictator-red);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-white);
    font-weight: 600;
}

.use-case-benefit strong {
    color: var(--color-gold);
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.use-cases-cta {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 3px solid var(--color-dictator-red);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    max-width: 900px;
    margin: 3rem auto 0;
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.3);
}

.use-cases-cta h3 {
    font-size: 2.5rem;
    font-family: var(--font-display);
    color: var(--color-dictator-red);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: var(--shadow-glow-red);
}

.use-cases-cta p {
    font-size: 1.2rem;
    color: var(--color-white);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.use-cases-cta strong {
    color: var(--color-gold);
    font-weight: 900;
}

.use-cases-cta ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 0;
}

.use-cases-cta li {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--color-gold);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    color: var(--color-gold);
    font-size: 0.95rem;
    font-weight: 700;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .peasant-grid {
        grid-template-columns: 1fr;
    }

    .arrow-right {
        transform: rotate(90deg);
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        padding: 2rem 0;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .download-box {
        flex-direction: column;
        text-align: center;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .use-case-card {
        padding: 2rem;
    }

    .use-case-header {
        flex-direction: column;
        text-align: center;
    }

    .use-cases-cta h3 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .dream-title {
        font-size: 2rem;
    }

    .dream-subtitle {
        font-size: 1.2rem;
    }

    .dream-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .use-case-icon {
        width: 60px;
        height: 60px;
    }

    .use-case-icon span {
        font-size: 2rem !important;
    }

    .use-case-header h3 {
        font-size: 1.5rem;
    }

    .use-case-subtitle {
        font-size: 1rem;
    }

    .window-content {
        padding: 1rem;
        font-size: 0.85rem;
    }

    .use-cases-cta {
        padding: 2rem 1.5rem;
    }

    .use-cases-cta h3 {
        font-size: 1.5rem;
    }

    .use-cases-cta p {
        font-size: 1rem;
    }
}
