/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --accent-color: #ff9500;
    --dark-color: #1a1a1a;
    --darker-color: #0f0f0f;
    --light-color: #ffffff;
    --gray-color: #888888;
    --gray-light: #f5f5f5;
    --success-color: #28a745;
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-dark: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    --shadow-light: 0 4px 20px rgba(255, 107, 53, 0.1);
    --shadow-medium: 0 8px 30px rgba(255, 107, 53, 0.2);
    --shadow-heavy: 0 20px 40px rgba(255, 107, 53, 0.3);
    --border-radius: 12px;
    --border-radius-large: 20px;
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Orbitron', monospace;
}

html {
    scroll-behavior: auto;
}

/* Basic reset only - remove heavy transforms */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--light-color);
    background: var(--darker-color);
    overflow-x: hidden;
}

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

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    text-align: center;
}

.fire-logo {
    font-size: 4rem;
    animation: fireFlicker 1.5s ease-in-out infinite alternate;
    margin-bottom: 1rem;
}

.loading-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes fireFlicker {
    0% { transform: scale(1) rotate(-2deg); filter: hue-rotate(0deg); }
    100% { transform: scale(1.1) rotate(2deg); filter: hue-rotate(20deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(15, 15, 15, 0.98);
    border-bottom-color: rgba(255, 107, 53, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { box-shadow: 0 0 5px rgba(255, 107, 53, 0.5); }
    100% { box-shadow: 0 0 15px rgba(255, 107, 53, 0.8); }
}

.footer-logo {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.fire-icon {
    font-size: 2rem;
    animation: fireFlicker 2s ease-in-out infinite alternate;
}

.brand-text {
    color: var(--light-color);
}

.pro {
    color: var(--primary-color);
    font-weight: 900;
}

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

.nav-link {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    color: var(--light-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero-bg::before,
.hero-bg::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    animation: floatingOrb 8s ease-in-out infinite;
}

.hero-bg::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-bg::after {
    bottom: 20%;
    right: 10%;
    animation-delay: 4s;
    background: radial-gradient(circle, rgba(247, 147, 30, 0.15) 0%, transparent 70%);
}

/* Add animated particles */
.hero-bg {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(247, 147, 30, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 149, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 30%, rgba(255, 107, 53, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 30% 70%, rgba(247, 147, 30, 0.05) 0%, transparent 40%);
    background-size: 400px 400px, 350px 350px, 450px 450px, 200px 200px, 300px 300px;
    animation: backgroundShift 15s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { 
        background-position: 0% 0%, 100% 0%, 50% 100%, 80% 20%, 20% 80%;
        transform: scale(1) rotate(0deg);
    }
    25% {
        background-position: 20% 20%, 80% 20%, 30% 80%, 90% 30%, 10% 70%;
        transform: scale(1.02) rotate(0.5deg);
    }
    50% { 
        background-position: 40% 40%, 60% 40%, 10% 60%, 70% 40%, 30% 60%;
        transform: scale(1.05) rotate(1deg);
    }
    75% {
        background-position: 60% 20%, 40% 60%, 70% 40%, 60% 50%, 40% 50%;
        transform: scale(1.02) rotate(0.5deg);
    }
}

@keyframes floatingOrb {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30px) translateX(20px) scale(1.1);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-15px) translateX(-15px) scale(1.05);
        opacity: 1;
    }
    75% {
        transform: translateY(-40px) translateX(10px) scale(0.95);
        opacity: 0.7;
    }
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 12s linear infinite;
}

.particle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: particleGlow 2s ease-in-out infinite alternate;
}

.particle-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.particle-2 {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 18s;
    background: var(--secondary-color);
}

.particle-3 {
    top: 30%;
    left: 70%;
    animation-delay: 4s;
    animation-duration: 20s;
    width: 6px;
    height: 6px;
}

.particle-4 {
    top: 80%;
    left: 20%;
    animation-delay: 6s;
    animation-duration: 14s;
    background: var(--accent-color);
}

.particle-5 {
    top: 20%;
    left: 90%;
    animation-delay: 8s;
    animation-duration: 22s;
    width: 4px;
    height: 4px;
}

.particle-6 {
    top: 70%;
    left: 10%;
    animation-delay: 10s;
    animation-duration: 16s;
    background: var(--secondary-color);
    width: 10px;
    height: 10px;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes particleGlow {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-logo {
    margin-bottom: 2rem;
    opacity: 0;
    animation: logoAppear 1s ease-out 0.5s forwards;
}

.hero-logo-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    animation: heroLogoFloat 3s ease-in-out infinite alternate;
}

@keyframes logoAppear {
    0% { opacity: 0; transform: scale(0.5) translateY(30px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes heroLogoFloat {
    0% { transform: translateY(0px) scale(1); box-shadow: 0 0 30px rgba(255, 107, 53, 0.5); }
    100% { transform: translateY(-10px) scale(1.05); box-shadow: 0 0 40px rgba(255, 107, 53, 0.8); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.title-line1, .title-line2, .title-line3 {
    opacity: 0;
    animation: titleReveal 1s ease-out forwards;
}

.title-line1 { animation-delay: 0.2s; }
.title-line2 { animation-delay: 0.4s; color: var(--primary-color); }
.title-line3 { animation-delay: 0.6s; }

.title-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: titleReveal 1s ease-out 0.8s forwards;
}

@keyframes titleReveal {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--light-color);
    box-shadow: var(--shadow-medium);
    position: relative;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-primary .btn-glow {
    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 ease;
}

.btn-primary:hover .btn-glow {
    left: 100%;
}

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

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

.btn-download {
    background: var(--gradient-primary);
    color: var(--light-color);
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-heavy);
    position: relative;
    overflow: hidden;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.4);
}

.download-size {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-left: 0.5rem;
}

/* Hero Image */
.hero-image {
    position: relative;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    0% { opacity: 0; transform: translateX(50px); }
    100% { opacity: 1; transform: translateX(0); }
}


.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-coin {
    position: absolute;
    font-size: 2rem;
    animation: floatCoin 4s ease-in-out infinite;
}

.coin-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.coin-2 {
    top: 30%;
    right: -10%;
    animation-delay: 1s;
}

.coin-3 {
    bottom: 30%;
    left: -15%;
    animation-delay: 2s;
}

.coin-4 {
    bottom: 10%;
    right: -15%;
    animation-delay: 3s;
}

@keyframes floatCoin {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}


/* Features Section */
.features {
    padding: 8rem 0;
    background: var(--dark-color);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: var(--border-radius-large);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: var(--shadow-heavy);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--light-color);
    position: relative;
    z-index: 2;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.feature-description {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-highlight {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--border-radius);
    padding: 0.5rem 1rem;
    display: inline-block;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 700;
}

/* App Preview Section */
.app-preview {
    padding: 8rem 0;
    background: var(--darker-color);
}

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

.preview-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--light-color);
}

.preview-description {
    font-size: 1.1rem;
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.preview-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--light-color);
}

.preview-feature i {
    color: var(--success-color);
    font-size: 1.2rem;
}


/* Download Section */
.download-section {
    padding: 8rem 0;
    background: var(--dark-color);
    position: relative;
}

.download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-primary);
}

.download-header {
    text-align: center;
    margin-bottom: 4rem;
}

.download-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light-color);
}

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

.download-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--border-radius-large);
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.download-card:hover {
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: var(--shadow-heavy);
}

.download-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.app-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-large);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    flex-shrink: 0;
    padding: 10px;
}

.app-icon-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.app-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--light-color);
}

.app-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.app-meta span {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.rating i {
    color: var(--secondary-color);
}

.app-description {
    color: var(--gray-color);
    line-height: 1.6;
}

.download-actions {
    text-align: center;
}

.download-info-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.download-info-text p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.download-info-text i {
    color: var(--success-color);
}

.download-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: all 0.3s ease;
}

.stat:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-color);
    font-weight: 600;
}

/* Support Section */
.support-section {
    padding: 6rem 0;
    background: var(--darker-color);
    text-align: center;
}

.support-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.support-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 3rem;
}

.support-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.support-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: var(--border-radius-large);
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
}

.support-option:hover {
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.support-option i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.whatsapp:hover i {
    color: #25d366;
}

.phone:hover i {
    color: #007bff;
}

.email:hover i {
    color: #dc3545;
}

/* Footer */
.footer {
    background: var(--darker-color);
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    grid-column: 1 / 3;
}

.footer-description {
    color: var(--gray-color);
    line-height: 1.6;
    margin-top: 1rem;
}

.link-group h4 {
    color: var(--light-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.link-group a {
    display: block;
    color: var(--gray-color);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .preview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .download-title {
        font-size: 2rem;
    }
    
    .download-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .download-info {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .support-options {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar {
        padding: 1rem 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .download-stats {
        grid-template-columns: 1fr;
    }
}