/* Tool AI Lastwar - Orange Theme */
:root {
    --primary: #f97316;
    --primary-dark: #ea580c;
    --primary-light: #fb923c;
    --secondary: #fbbf24;
    --accent: #22d3ee;
    --bg-dark: #1a1a2e;
    --bg-darker: #0f0f1a;
    --bg-card: rgba(26, 26, 46, 0.95);
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --gradient-orange: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
    --gradient-dark: linear-gradient(180deg, rgba(26, 26, 46, 0.9) 0%, rgba(15, 15, 26, 0.95) 100%);
    --shadow-orange: 0 4px 30px rgba(249, 115, 22, 0.3);
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-darker);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(15, 15, 26, 0.7) 0%, rgba(26, 26, 46, 0.75) 50%, rgba(15, 15, 26, 0.8) 100%),
        url('bg-lastwar.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    pointer-events: none;
    will-change: transform;
    transform: translateZ(0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Modern Compact */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    background: rgba(15, 15, 26, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--primary);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
}

.logo-icon {
    font-size: 1.6rem;
    filter: drop-shadow(0 0 8px var(--primary));
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Main Navigation */
.main-nav {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(249, 115, 22, 0.1);
}

.nav-link.active {
    color: white;
    background: var(--gradient-orange);
}

/* Language Switcher - Compact */
.language-switcher {
    position: relative;
    z-index: 9999;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--gradient-orange);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}

.lang-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-orange);
}

.lang-btn .arrow {
    font-size: 0.6rem;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    min-width: 140px;
    background: var(--bg-card);
    border: 1px solid var(--primary);
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 9999;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    width: 100%;
    padding: 10px 14px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.lang-option:hover {
    background: var(--primary);
    color: white;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.auth-btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.register-btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.register-btn:hover {
    background: rgba(249, 115, 22, 0.1);
}

.login-btn {
    background: var(--gradient-orange);
    border: none;
    color: white;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

/* User Menu (Logged In) */
.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-nav {
    color: var(--primary) !important;
    font-weight: 500;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-email {
    color: var(--text-secondary);
    font-size: 0.8rem;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.logout-btn {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    color: #ef4444;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
}

.logout-btn:hover {
    background: #ef4444;
    color: white;
}

/* Auth Modals */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.auth-modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 20px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #ef4444;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 30px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-form .form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
}

.auth-form .form-input {
    width: 100%;
    box-sizing: border-box;
}

.form-message {
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid #22c55e;
    color: #22c55e;
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    color: #ef4444;
}

.submit-btn {
    background: var(--gradient-orange);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.auth-switch {
    text-align: center;
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.auth-switch a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Hero - Clean & Impactful */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 120px 20px 50px;
    background: url('hinh_background/download.jpg') center/cover no-repeat fixed;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.92) 0%, rgba(26, 26, 46, 0.85) 100%);
}

.hero-content {
    position: relative;
    max-width: 650px;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3.5vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 20px;
    color: #fbbf24;
    -webkit-text-stroke: 2px #1a1a2e;
    text-shadow:
        3px 3px 0px #1a1a2e,
        -1px -1px 0px #1a1a2e,
        1px -1px 0px #1a1a2e,
        -1px 1px 0px #1a1a2e,
        0 0 30px rgba(249, 115, 22, 0.8),
        0 0 60px rgba(249, 115, 22, 0.5);
    line-height: 1.3;
    display: inline-block;
    letter-spacing: 2px;
    white-space: nowrap;
    animation: glow-text 3s infinite alternate;
}

.hero-title .star {
    color: var(--secondary);
    -webkit-text-fill-color: var(--secondary);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #fbbf24;
    margin-bottom: 14px;
    font-weight: 600;
    font-style: italic;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(249, 115, 22, 0.6);
    letter-spacing: 1px;
}

.hero-desc {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 24px;
    text-shadow:
        1px 1px 3px rgba(0, 0, 0, 0.9),
        0 0 10px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    line-height: 1.6;
}

.glitch-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: #fff;
    text-shadow: 0 0 5px var(--primary), 0 0 10px var(--primary);
    letter-spacing: 1px;
    animation: glitch-anim 5s infinite;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.hero-particles::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
        radial-gradient(circle, rgba(34, 211, 238, 0.05) 0%, transparent 40%);
    background-size: 50% 50%, 60% 60%;
    background-position: 0 0, 100% 100%;
    animation: move-particles 15s linear infinite;
}

/* Buttons - Modern */
.btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-btn,
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.cta-btn {
    background: var(--gradient-orange);
    color: white;
    box-shadow: var(--shadow-orange);
    position: relative;
    overflow: hidden;
}

.pulse-btn {
    animation: pulse-glow 2s infinite;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(249, 115, 22, 0.5);
}

.download-btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.download-btn:hover {
    background: var(--primary);
    color: white;
}

.download-icon {
    font-size: 1rem;
}

/* Features - Grid Cards */
.features {
    padding: 40px 0;
    background: transparent;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary);
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.feature-card {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    flex: 0 1 280px;
    min-width: 250px;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-orange);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-light);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Special Highlighted Feature - Burning Effect */
.feature-card.special-feature {
    border: 3px solid #ff5722;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.25) 0%, rgba(26, 26, 46, 0.95) 100%);
    box-shadow: 0 0 30px rgba(255, 87, 34, 0.6), inset 0 0 20px rgba(255, 87, 34, 0.4);
    transform: scale(1.05);
    z-index: 5;
    position: relative;
    overflow: hidden;
    animation: burning-pulse 1.5s infinite alternate;
}

@keyframes burning-pulse {
    0% {
        box-shadow: 0 0 25px rgba(255, 87, 34, 0.6), 0 0 10px rgba(255, 193, 7, 0.5);
        border-color: #ff5722;
    }

    100% {
        box-shadow: 0 0 50px rgba(255, 87, 34, 0.9), 0 0 30px rgba(255, 193, 7, 0.8);
        border-color: #ffc107;
    }
}

.feature-card.special-feature .hot-badge {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff5722, #ffc107);
    color: white;
    padding: 4px 10px;
    font-size: 0.5rem;
    font-weight: 700;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
    letter-spacing: 0;
    z-index: 10;
    white-space: nowrap;
    text-align: center;
    width: auto;
    max-width: 95%;
}

.feature-card.special-feature::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.1) 0%, transparent 60%);
    opacity: 0.6;
    animation: fire-rotate 4s linear infinite;
    z-index: -1;
}

@keyframes fire-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.feature-card.special-feature:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 0 70px rgba(255, 87, 34, 1);
}

.feature-card.special-feature h3 {
    color: #ffc107;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(255, 87, 34, 0.8);
    font-size: 1.2rem;
    text-transform: uppercase;
}

.feature-card.special-feature .feature-icon i {
    color: #ffc107;
    filter: drop-shadow(0 0 15px #ff5722);
    animation: icon-shake 2s ease-in-out infinite;
}

@keyframes icon-shake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }
}

/* Video Section */
.video-section {
    padding: 40px 0;
    background: transparent;
}

.video-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-top: -15px;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.video-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 45%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-orange);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 14px;
}

/* Pricing - Horizontal Compact */
.pricing {
    padding: 40px 0;
    background: var(--bg-dark);
}

.pricing-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-top: -15px;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.pricing-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 16px;
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-orange);
}

@keyframes fire-glow {
    0% {
        box-shadow: 0 0 10px rgba(249, 115, 22, 0.5), 0 0 20px rgba(249, 115, 22, 0.3);
        border-color: #f97316;
    }

    50% {
        box-shadow: 0 0 25px rgba(249, 115, 22, 0.9), 0 0 50px rgba(255, 87, 34, 0.6);
        border-color: #ff5722;
    }

    100% {
        box-shadow: 0 0 10px rgba(249, 115, 22, 0.5), 0 0 20px rgba(249, 115, 22, 0.3);
        border-color: #f97316;
    }
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.1) 0%, var(--bg-card) 100%);
    animation: fire-glow 2s infinite alternate ease-in-out;
    transform: scale(1.05);
    z-index: 10;
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-orange);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
}

.card-badge {
    display: inline-block;
    background: var(--gradient-orange);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.card-badge.premium {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.card-header {
    text-align: center;
    margin-bottom: 12px;
}

.plan-name {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 6px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 4px;
}

.price .amount {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}

.price .period {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.duration {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.features-list {
    list-style: none;
    margin-bottom: 14px;
    flex-grow: 1;
}

.features-list li {
    padding: 5px 0;
    color: var(--text-secondary);
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.features-list li:last-child {
    border-bottom: none;
}

.select-btn {
    width: 100%;
    padding: 10px 16px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.select-btn:hover,
.select-btn.highlight {
    background: var(--gradient-orange);
    color: white;
    border-color: transparent;
}

.select-btn.premium-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
}

/* Contact - Simple */
.contact {
    padding: 40px 0;
    background: var(--bg-darker);
    text-align: center;
}


.contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 140px;
    height: 140px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(249, 115, 22, 0.2);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.4s;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.contact-card i {
    font-size: 3.5rem;
    margin-bottom: 5px;
    transition: transform 0.4s;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.contact-card:hover img,
.contact-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.contact-card span {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* Footer - Minimal */
.footer {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(249, 115, 22, 0.2);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo .logo-text {
    font-size: 1rem;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Reviews Section */
.reviews-section {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.reviews-summary {
    text-align: center;
    margin-bottom: 40px;
}

.rating-overall {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.rating-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 30px rgba(249, 115, 22, 0.5);
}

.rating-stars {
    display: flex;
    gap: 5px;
}

.rating-stars i {
    font-size: 1.5rem;
    color: #fbbf24;
}

.rating-count {
    font-size: 1rem;
    color: var(--text-secondary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(249, 115, 22, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.reviewer-name {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.review-stars {
    display: flex;
    gap: 3px;
}

.review-stars i {
    font-size: 0.85rem;
    color: #fbbf24;
}

.review-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

/* Review Form */
.review-form-container {
    background: var(--bg-card);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 25px;
    text-align: center;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.star-rating-input {
    display: flex;
    gap: 8px;
}

.star-rating-input i {
    font-size: 1.8rem;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
}

.star-rating-input i:hover,
.star-rating-input i.active {
    color: #fbbf24;
    transform: scale(1.1);
}

.star-rating-input i.fa-solid {
    color: #fbbf24;
}

.form-input,
.form-textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-secondary);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-review-btn {
    background: var(--gradient-orange);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.page-btn:hover {
    background: rgba(249, 115, 22, 0.2);
}

.page-btn.active {
    background: var(--gradient-orange);
    color: white;
    border-color: transparent;
}

/* Responsive */
@media (max-width: 992px) {

    .pricing-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {

    .pricing-grid,
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin: 0 auto;
    }

    .hero-content {
        text-align: center;
    }

    .btn-group {
        justify-content: center;
    }

    .contact-methods {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        justify-items: center;
    }

    .contact-card {
        width: 100%;
        max-width: 130px;
        height: 120px;
        padding: 15px;
        gap: 10px;
    }

    .contact-card img {
        width: 45px;
        height: 45px;
    }

    .contact-card i {
        font-size: 2.5rem;
    }

    .contact-card span {
        font-size: 0.85rem;
    }
}

/* Comparison Table Section */
.comparison-section {
    padding: 40px 0;
    background: var(--bg-secondary);
}

.comparison-table-wrapper {
    overflow-x: auto;
    overflow-y: auto;
    max-height: 70vh;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table thead {
    background: rgba(26, 26, 46, 0.98);
    position: sticky;
    top: 0;
    z-index: 10;
}

.comparison-table th {
    padding: 16px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(249, 115, 22, 0.3);
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td {
    padding: 14px 20px;
    text-align: center;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-primary);
}

.comparison-table tbody tr:hover {
    background: rgba(249, 115, 22, 0.05);
}

.comparison-table .check {
    color: #22c55e;
    font-size: 1.2rem;
    font-weight: bold;
}

.comparison-table .cross {
    color: #ef4444;
    font-size: 1.2rem;
    font-weight: bold;
}

.comparison-table .text-warning {
    color: #facc15;
}

.comparison-table .text-success {
    color: #22c55e;
}

.comparison-table .text-muted {
    color: var(--text-secondary);
}

@media (max-width: 768px) {

    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
}

/* Purchase Counter Widget */
.purchase-counter {
    position: fixed;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    background: rgba(15, 15, 26, 0.95);
    border: 1px solid var(--primary);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 900;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    animation: slideInLeft 0.8s ease-out;
}

.purchase-counter:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.3);
}

.counter-icon {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.counter-content {
    display: flex;
    flex-direction: column;
}

.counter-number {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.counter-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translate(-50px, -50%);
    }

    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .purchase-counter {
        left: 5px;
        padding: 8px 10px;
        gap: 8px;
    }

    .counter-number {
        font-size: 1rem;
    }

    .counter-label {
        font-size: 0.6rem;
    }

    .counter-icon {
        font-size: 1.2rem;
    }
}

/* Feature Glossary Section */
.glossary-section {
    padding: 0 0 40px 0;
    background: var(--bg-secondary);
}

.glossary-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 30px;
    text-shadow: var(--shadow-orange);
}

.glossary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.glossary-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s;
}

.glossary-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.glossary-item h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.glossary-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .glossary-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes glow-text {
    from {
        text-shadow: 0 0 10px rgba(249, 115, 22, 0.4), 0 0 20px rgba(249, 115, 22, 0.2);
    }

    to {
        text-shadow: 0 0 20px rgba(249, 115, 22, 0.8), 0 0 30px rgba(249, 115, 22, 0.6), 0 0 40px rgba(249, 115, 22, 0.4);
    }
}

@keyframes glitch-anim {
    0% {
        transform: translate(0);
        text-shadow: 0 0 5px var(--primary);
    }

    20% {
        transform: translate(-2px, 2px);
        text-shadow: 2px 0 var(--accent), -2px 0 var(--secondary);
    }

    40% {
        transform: translate(-2px, -2px);
        text-shadow: 3px 0 var(--accent), -3px 0 var(--secondary);
    }

    60% {
        transform: translate(2px, 2px);
        text-shadow: 2px 0 var(--accent), -2px 0 var(--secondary);
    }

    80% {
        transform: translate(2px, -2px);
        text-shadow: 2px 0 var(--accent), -2px 0 var(--secondary);
    }

    100% {
        transform: translate(0);
        text-shadow: 0 0 5px var(--primary);
    }
}

@keyframes move-particles {
    0% {
        background-position: 0 0, 100% 100%;
        transform: scale(1);
    }

    50% {
        background-position: 50% 50%, 50% 50%;
        transform: scale(1.1);
    }

    100% {
        background-position: 100% 100%, 0 0;
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(249, 115, 22, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

@keyframes pulse-fire {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(249, 115, 22, 0));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.5));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(249, 115, 22, 0));
    }
}

/* ==================== RESPONSIVE MOBILE ==================== */

/* Tablet (max-width: 768px) */
@media (max-width: 768px) {

    /* Performance optimization for mobile */
    * {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    .pricing-card.popular {
        animation: none;
    }

    .feature-card.special-feature {
        animation: none;
    }

    /* Header */
    .header {
        padding: 10px 0;
    }

    .header .container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 8px;
        margin-top: 8px;
    }

    .nav-link {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .language-switcher {
        order: 2;
    }

    .lang-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    /* Auth Buttons Mobile */
    .auth-buttons {
        order: 4;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .auth-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    /* User Menu Mobile */
    .user-menu {
        order: 4;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 10px;
    }

    .user-nav {
        font-size: 0.75rem;
        padding: 5px 8px;
    }

    .user-email {
        font-size: 0.7rem;
        max-width: 120px;
    }

    .logout-btn {
        padding: 4px 8px;
        font-size: 0.7rem;
    }

    /* Auth Modal Mobile */
    .modal-content {
        padding: 25px;
        margin: 10px;
    }

    .modal-title {
        font-size: 1.2rem;
    }

    .auth-form {
        gap: 15px;
    }

    .submit-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    /* Hero */
    .hero {
        padding-top: 180px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 1.3rem !important;
        white-space: normal;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .hero-desc {
        font-size: 0.85rem;
    }

    .cta-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    /* Purchase Counter */
    .purchase-counter {
        left: 10px;
        padding: 8px 12px;
        top: auto;
        bottom: 20px;
        transform: none;
    }

    .counter-number {
        font-size: 1rem;
    }

    .counter-label {
        font-size: 0.65rem;
    }

    /* Features */
    .features {
        padding: 30px 0;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .feature-card {
        width: 100%;
        max-width: none;
        padding: 16px 12px;
        min-width: auto;
        flex: none;
    }

    .feature-card.special-feature {
        transform: scale(1);
    }

    .feature-card.special-feature:hover {
        transform: scale(1.02) !important;
    }

    .feature-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .feature-card h3 {
        font-size: 0.85rem;
    }

    .feature-card p {
        font-size: 0.7rem;
        line-height: 1.3;
    }

    /* Video Section */
    .video-section {
        padding: 30px 0;
    }

    .video-wrapper {
        padding-bottom: 56.25%;
        border-radius: 12px;
    }

    .video-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    /* Footer */
    .footer {
        padding: 20px 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .copyright {
        font-size: 0.75rem;
    }

    /* Reviews Section Mobile */
    .reviews-section {
        padding: 30px 0;
    }

    .rating-number {
        font-size: 2.5rem;
    }

    .rating-stars i {
        font-size: 1.2rem;
    }

    .rating-count {
        font-size: 0.85rem;
    }

    .reviews-summary {
        margin-bottom: 25px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .review-card {
        padding: 18px;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .reviewer-name {
        font-size: 0.9rem;
    }

    .review-stars i {
        font-size: 0.75rem;
    }

    .review-text {
        font-size: 0.85rem;
    }

    /* Review Form Mobile */
    .review-form-container {
        padding: 20px;
        margin-bottom: 25px;
    }

    .form-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .star-rating-input i {
        font-size: 1.5rem;
    }

    .form-input,
    .form-textarea {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .submit-review-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    /* Pagination Mobile */
    .pagination {
        margin-top: 20px;
    }

    .page-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Mobile Small (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header .container {
        justify-content: center;
    }

    .logo {
        width: 100%;
        justify-content: center;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .main-nav {
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 0.7rem;
        padding: 5px 8px;
    }

    .hero {
        padding-top: 200px;
    }

    .hero-title {
        font-size: 1.1rem !important;
    }

    .hero-subtitle {
        font-size: 0.65rem;
        white-space: nowrap;
    }

    .hero-desc {
        font-size: 0.8rem;
    }

    .cta-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .feature-card {
        padding: 16px 12px;
    }

    .purchase-counter {
        display: flex !important;
        position: fixed;
        top: 50%;
        left: 5px;
        transform: translateY(-50%);
        padding: 6px 10px;
        gap: 6px;
        border-radius: 10px;
        background: rgba(15, 15, 26, 0.95);
        z-index: 900;
    }

    .counter-icon {
        font-size: 0.9rem;
    }

    .counter-content {
        display: flex;
        flex-direction: column;
        gap: 1px;
    }

    .counter-number {
        font-size: 0.8rem;
        line-height: 1;
    }

    .counter-label {
        font-size: 0.5rem;
        margin-top: 2px;
        line-height: 1.1;
        white-space: nowrap;
    }

    /* Floating icons */
    .floating-container {
        display: none;
    }
}

/* Pricing Responsive */
@media (max-width: 768px) {
    .pricing {
        padding: 30px 0;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .pricing-card {
        padding: 16px 12px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .plan-name {
        font-size: 0.9rem;
    }

    .price .amount {
        font-size: 1.3rem;
    }

    .price .period {
        font-size: 0.7rem;
    }

    .duration {
        font-size: 0.65rem;
    }

    .features-list li {
        font-size: 0.7rem;
        padding: 4px 0;
    }

    .select-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .card-badge {
        font-size: 0.6rem;
        padding: 3px 8px;
    }

    .popular-badge {
        font-size: 0.55rem;
        padding: 3px 10px;
    }

    /* Contact buttons */
    .contact-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .contact-btn {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    /* Glossary grid */
    .glossary-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .glossary-item {
        padding: 14px;
    }

    .glossary-item h4 {
        font-size: 0.9rem;
    }

    .glossary-item p {
        font-size: 0.75rem;
    }

    /* Comparison table */
    .comparison-table {
        font-size: 0.6rem;
        min-width: auto;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 6px 3px;
    }

    .comparison-table th {
        font-size: 0.55rem;
        letter-spacing: 0;
    }

    .comparison-table td:first-child {
        max-width: 100px;
        word-wrap: break-word;
    }

    .check,
    .cross {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .pricing-card {
        padding: 12px 8px;
    }

    .plan-name {
        font-size: 0.8rem;
    }

    .price .amount {
        font-size: 1.1rem;
    }

    .features-list li {
        font-size: 0.65rem;
    }

    .select-btn {
        padding: 6px 10px;
        font-size: 0.7rem;
    }
}