/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --primary: #ff6b35;
    --primary-dark: #e55a2b;
    --primary-light: #ff8555;
    --secondary: #ffd700;

    --bg-dark: #0a0e1a;
    --bg-darker: #050810;
    --bg-card: #111827;
    --bg-card-hover: #1a2332;

    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;

    --border-color: rgba(255, 255, 255, 0.1);
    --border-color-hover: rgba(255, 107, 53, 0.3);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.4);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== CONTAINER ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-icon {
    font-size: 2rem;
}

.logo-accent {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: var(--transition);
    filter: grayscale(100%);
    opacity: 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-icon {
    width: 28px;
    height: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.lang-btn:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.05);
}

.lang-btn.active {
    filter: grayscale(0%);
    opacity: 1;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

/* ===== MUSIC BUTTON ===== */
.music-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.music-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.music-btn.playing {
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.2);
    animation: music-pulse 2s infinite;
}

.music-btn.playing .music-icon {
    /* Emojis don't always center well when rotating, but let's try */
    display: inline-block;
}

@keyframes music-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);
    }
}

/* ===== SOCIAL LINKS ===== */
.social-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.social-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--text-secondary);
    transition: var(--transition);
    border: 1px solid transparent;
}

.social-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.social-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 0.25rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-secondary);
    background: transparent;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.lang-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 107, 53, 0.1);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.lang-icon {
    font-size: 1rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.1);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-file {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--text-primary);
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.btn-file:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
}

.btn-file:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===== PROMO MODAL ===== */
.promo-modal-overlay {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.promo-modal-content {
    position: relative;
    max-width: 700px;
    width: 90%;
    background: transparent;
    border: none;
    box-shadow: none;
    animation: modalSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.8) translateY(-50px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.promo-modal-inner {
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    background: linear-gradient(135deg,
            rgba(255, 107, 53, 0.15) 0%,
            rgba(255, 215, 0, 0.15) 50%,
            rgba(255, 107, 53, 0.15) 100%);
    border-radius: 32px;
    padding: 3rem 2.5rem;
    box-shadow:
        0 20px 60px rgba(255, 107, 53, 0.4),
        0 0 100px rgba(255, 215, 0, 0.3),
        inset 0 0 100px rgba(255, 107, 53, 0.05);
    animation: promo-glow 3s ease-in-out infinite;
}

.promo-modal-close {
    position: sticky;
    top: 1rem;
    left: calc(100% - 3rem - 40px);
    float: right;
    z-index: 100;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    transition: var(--transition);
    margin-bottom: -40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-modal-close:hover {
    background: var(--primary);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

@keyframes promo-glow {

    0%,
    100% {
        box-shadow:
            0 20px 60px rgba(255, 107, 53, 0.3),
            0 0 100px rgba(255, 215, 0, 0.2),
            inset 0 0 100px rgba(255, 107, 53, 0.05);
    }

    50% {
        box-shadow:
            0 20px 80px rgba(255, 107, 53, 0.4),
            0 0 120px rgba(255, 215, 0, 0.3),
            inset 0 0 120px rgba(255, 107, 53, 0.08);
    }
}

.promo-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    font-size: 2rem;
    animation: sparkle-float 3s ease-in-out infinite;
    opacity: 0.6;
}

.sparkle:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

.sparkle:nth-child(3) {
    bottom: 15%;
    left: 15%;
    animation-delay: 1s;
}

.sparkle:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 1.5s;
}

.sparkle:nth-child(5) {
    top: 50%;
    left: 5%;
    animation-delay: 2s;
}

.sparkle:nth-child(6) {
    top: 50%;
    right: 5%;
    animation-delay: 2.5s;
}

@keyframes sparkle-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-20px) rotate(180deg) scale(1.2);
        opacity: 1;
    }
}

.promo-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-primary);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 32px rgba(255, 107, 53, 0.6);
    }
}

.promo-badge-icon {
    font-size: 1.2rem;
    animation: icon-bounce 1s ease-in-out infinite;
}

@keyframes icon-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.promo-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.promo-highlight {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: highlight-shine 2s ease-in-out infinite;
}

@keyframes highlight-shine {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.3);
    }
}

.promo-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.promo-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    min-width: 85px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.timer-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.timer-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.timer-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.timer-separator {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    animation: separator-blink 1s ease-in-out infinite;
}

@keyframes separator-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.promo-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-promo-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-primary);
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-promo-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-promo-primary:hover::before {
    left: 100%;
}

.btn-promo-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6);
}

.btn-promo-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-promo-secondary:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.promo-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.promo-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3), transparent);
    filter: blur(60px);
    animation: circle-float 6s ease-in-out infinite;
}

.promo-circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.promo-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent);
    animation-delay: 2s;
}

.promo-circle-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: -100px;
    animation-delay: 4s;
}

@keyframes circle-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* ===== SECTION STYLES ===== */
.files-section,
.features-section,
.contact-section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FILES GRID ===== */
.files-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Single Card Layout - Centered */
.files-grid.single-card {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.file-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.file-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: var(--transition);
}

.file-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-xl);
}

.file-card:hover::before {
    opacity: 1;
}

.file-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 215, 0, 0.05));
}

.file-card.featured::before {
    opacity: 1;
}

.file-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.file-icon {
    font-size: 3rem;
}

.file-badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.file-badge.coming-soon {
    background: rgba(107, 114, 128, 0.2);
    color: var(--text-secondary);
}

.file-badge.popular {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-primary);
}

.file-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.file-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.file-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.feature-icon {
    color: var(--primary);
    font-weight: 700;
}

.file-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.price-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-lg);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 20px;
}

.feature-icon-large {
    font-size: 2.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== CONTACT GRID ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-info {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-link:hover {
    color: var(--primary-light);
}

/* WhatsApp Icon Styling */
.whatsapp-icon img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin: 0 auto;
}

/* Discord Icon Styling */
.discord-icon img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin: 0 auto;
}

/* Email Icon Styling */
.email-icon img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin: 0 auto;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: rgba(255, 107, 53, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 215, 0, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 2px solid var(--border-color);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.testimonial-stars {
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== MODAL STYLES ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    max-width: 400px;
    max-height: 90vh;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease;
    overflow-y: auto;
}

/* Custom Scrollbar for Modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    transition: var(--transition);
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* Firefox Scrollbar */
.modal-content {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(255, 255, 255, 0.05);
}


@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: sticky;
    top: 1rem;
    left: calc(100% - 1rem - 32px);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    margin-bottom: -32px;
    float: right;
}

.modal-close:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-message {
    padding: 0.65rem;
    border-radius: 8px;
    margin-bottom: 0.85rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.form-group input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.6rem 0.75rem;
    color: var(--text-primary);
    font-size: 0.85rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.05);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

/* ===== DOWNLOAD SECTION ===== */
.download-section {
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.server-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    color: var(--text-primary);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.info-value {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

.btn-download {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--text-primary);
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
    transition: var(--transition);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
}

/* ===== MODAL DIVIDER ===== */
.modal-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.25rem 0;
    position: relative;
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.modal-divider span {
    padding: 0 1rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== INFO MODAL ===== */
.info-modal-content {
    max-width: 700px;
    max-height: 85vh;
}

.info-modal-body {
    color: var(--text-secondary);
    line-height: 1.8;
}

.info-modal-body h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.info-modal-body p {
    margin-bottom: 1rem;
}

.info-modal-body ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.info-modal-body li {
    margin-bottom: 0.5rem;
    list-style: disc;
}

.info-modal-body strong {
    color: var(--primary);
    font-weight: 700;
}

/* ===== PRODUCT MODAL ===== */
.product-modal-content {
    max-width: 900px;
    max-height: 90vh;
    padding: 2rem;
}

.product-slider {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.slider-container {
    overflow: hidden;
    border-radius: 12px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-item {
    min-width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 215, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-secondary);
    border: 2px dashed var(--border-color);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
    z-index: 2;
}

.slider-btn:hover {
    background: rgba(255, 107, 53, 0.8);
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 5px;
}

.product-details h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.product-features-list,
.product-tech-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.product-features-list li,
.product-tech-list li {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 107, 53, 0.05);
    border-left: 3px solid var(--primary);
    border-radius: 6px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.product-features-list li:hover,
.product-tech-list li:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.product-price-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 215, 0, 0.1));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.price-box {
    margin-bottom: 1rem;
}

.price-box .price-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-right: 0.5rem;
}

.price-box .price-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.price-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-product {
    padding: 1rem;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-product.discord {
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: white;
}

.btn-product.discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
}

.btn-product.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.btn-product.whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ===== PULSE ANIMATION ===== */
.btn-pulse {
    position: relative;
    overflow: hidden;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
        transform: scale(1.02);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
        transform: scale(1);
    }
}

/* ===== RESPONSIVE ===== */
/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .files-grid,
    .testimonials-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .modal-content,
    .info-modal-content,
    .product-modal-content {
        padding: 1.5rem;
        width: 95%;
        margin: 1rem;
    }

    .product-actions {
        grid-template-columns: 1fr;
    }

    /* Promo Modal Responsive */
    .promo-modal-content {
        width: 95%;
    }

    .promo-modal-inner {
        padding: 2.5rem 2rem;
    }

    .promo-title {
        font-size: 2rem;
    }

    .promo-highlight {
        font-size: 2.75rem;
    }

    .promo-timer {
        gap: 0.5rem;
    }

    .timer-item {
        padding: 0.85rem 1.25rem;
        min-width: 75px;
    }

    .timer-value {
        font-size: 2rem;
    }

    .timer-separator {
        font-size: 1.75rem;
    }

    .promo-actions {
        flex-direction: column;
    }

    .btn-promo-primary,
    .btn-promo-secondary {
        width: 100%;
        padding: 1rem 2rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-actions .btn-primary {
        display: none;
    }

    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .product-details h4 {
        font-size: 1.1rem;
    }

    .price-box .price-value {
        font-size: 1.25rem;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    /* Promo Modal Mobile */
    .promo-modal-content {
        width: 95%;
    }

    .promo-modal-inner {
        padding: 1.5rem 1rem;
        max-height: 85vh;
    }

    .promo-modal-close {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
        top: 0.5rem;
        left: calc(100% - 1.5rem - 32px);
        margin-bottom: -32px;
    }

    .promo-badge {
        padding: 0.4rem 1rem;
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
    }

    .promo-badge-icon {
        font-size: 1rem;
    }

    .promo-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .promo-highlight {
        font-size: 1.75rem;
    }

    .promo-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .promo-timer {
        display: grid;
        grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
        gap: 0.25rem;
        margin-bottom: 1rem;
        align-items: center;
    }

    .timer-item {
        padding: 0.5rem 0.4rem;
        min-width: auto;
    }

    .timer-value {
        font-size: 1.25rem;
        margin-bottom: 0.15rem;
    }

    .timer-label {
        font-size: 0.6rem;
    }

    .timer-separator {
        font-size: 1rem;
        padding: 0 0.1rem;
    }

    .timer-separator:last-of-type {
        display: block;
    }

    .promo-actions {
        gap: 0.5rem;
        flex-direction: column;
    }

    .btn-promo-primary,
    .btn-promo-secondary {
        font-size: 0.9rem;
        padding: 0.85rem 1.25rem;
        width: 100%;
    }

    .sparkle {
        font-size: 1.5rem;
    }
}