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

:root {
    --primary-red: #e34b52;
    --dark-red: #c23a41;
    --light-red: #f05a62;
    --accent-red: #e34b52;
    --black: #000000;
    --dark-black: #0A0A0A;
    --medium-black: #1A1A1A;
    --light-black: #2A2A2A;
    --white: #FFFFFF;
    --gray: #666666;
    --light-gray: #CCCCCC;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--white);
    overflow-x: hidden;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-black) 50%, var(--black) 100%);
    background-attachment: fixed;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(227, 75, 82, 0.3);
    border-bottom: 2px solid var(--primary-red);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-red);
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.nav-logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-logo:hover::after {
    transform: scaleX(1);
}

.logo-icon {
    font-size: 2rem;
    margin-right: 10px;
    filter: drop-shadow(0 0 10px var(--primary-red));
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px var(--primary-red));
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--light-red);
    transition: width 0.3s ease 0.1s;
}

.nav-menu a:hover {
    color: var(--primary-red);
}

.nav-menu a:hover::before,
.nav-menu a:hover::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    transition: 0.3s;
    box-shadow: 0 0 5px var(--primary-red);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(180deg, var(--dark-black) 0%, var(--black) 100%);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-background-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 75, 82, 0.1) 0%, transparent 70%);
    filter: blur(60px);
}

.hero-background-shapes .shape-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.hero-background-shapes .shape-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

.hero-background-shapes .shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 30s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    box-shadow: 0 0 10px var(--primary-red);
    z-index: 1;
}

.hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
}

.hero-content {
    position: relative;
    text-align: left;
    color: var(--white);
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, rgba(227, 75, 82, 0.2), rgba(227, 75, 82, 0.1));
    border: 1px solid var(--primary-red);
    border-radius: 30px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--light-red);
    backdrop-filter: blur(10px);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-screenshots {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

.screenshot-wrapper {
    position: relative;
}

.screenshot-main {
    z-index: 2;
}

.screenshot-side {
    margin-top: 60px;
    z-index: 1;
}

.hero-screenshot {
    width: 240px;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(227, 75, 82, 0.3), 0 0 30px rgba(227, 75, 82, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: contain;
    border: 2px solid var(--primary-red);
}

.screenshot-main .hero-screenshot {
    width: 240px;
    box-shadow: 0 20px 50px rgba(227, 75, 82, 0.4), 0 0 40px rgba(227, 75, 82, 0.3);
}

.hero-screenshot:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 60px rgba(227, 75, 82, 0.5), 0 0 50px rgba(227, 75, 82, 0.4);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(227, 75, 82, 0.2);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-red);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, transparent, var(--dark-black));
    z-index: 1;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
}

.title-accent {
    display: block;
    color: var(--primary-red);
    text-shadow: 0 0 30px rgba(227, 75, 82, 0.5), 0 0 60px rgba(227, 75, 82, 0.3);
    position: relative;
    padding-bottom: 1rem;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-red), var(--primary-red));
    box-shadow: 0 0 10px var(--primary-red);
}

.hero-tagline {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--light-red);
    font-weight: 400;
    font-style: italic;
    position: relative;
    padding-left: 1rem;
}

.hero-tagline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-red);
    box-shadow: 0 0 10px var(--primary-red);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.8;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(227, 75, 82, 0.4), 0 0 20px rgba(227, 75, 82, 0.2);
    border: 2px solid var(--primary-red);
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(227, 75, 82, 0.6), 0 0 30px rgba(227, 75, 82, 0.4);
    background: linear-gradient(135deg, var(--light-red) 0%, var(--primary-red) 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-red);
    box-shadow: 0 0 10px rgba(227, 75, 82, 0.3);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(227, 75, 82, 0.5);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-black) 0%, var(--black) 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    box-shadow: 0 0 10px var(--primary-red);
}

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

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    box-shadow: 0 0 10px var(--primary-red);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 1.5rem auto 0;
    line-height: 1.8;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-main-card {
    background: linear-gradient(135deg, var(--medium-black) 0%, var(--dark-black) 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border: 2px solid var(--primary-red);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--light-red), var(--primary-red));
    box-shadow: 0 0 20px var(--primary-red);
}

.feature-main-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(227, 75, 82, 0.4), 0 0 40px rgba(227, 75, 82, 0.3);
}

.feature-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(227, 75, 82, 0.5), 0 0 40px rgba(227, 75, 82, 0.3);
}

.feature-icon-large i {
    font-size: 2.5rem;
    color: var(--white);
}

.feature-main-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.feature-main-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.1rem;
}

.feature-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(227, 75, 82, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, 30%);
}

.features-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card-compact {
    background: linear-gradient(135deg, var(--medium-black) 0%, var(--dark-black) 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card-compact:hover::before {
    transform: scaleX(1);
}

.feature-card-compact:hover {
    transform: translateX(10px);
    border-color: var(--primary-red);
    box-shadow: 0 15px 35px rgba(227, 75, 82, 0.3), 0 0 30px rgba(227, 75, 82, 0.2);
}

.feature-card-compact .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.feature-card-compact .feature-icon i {
    font-size: 1.5rem;
}

.feature-card-compact h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.feature-card-compact p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-card {
    background: linear-gradient(135deg, var(--medium-black) 0%, var(--dark-black) 100%);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(227, 75, 82, 0.3), 0 0 30px rgba(227, 75, 82, 0.2);
    border-color: var(--primary-red);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 20px rgba(227, 75, 82, 0.4), 0 0 30px rgba(227, 75, 82, 0.2);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid var(--primary-red);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon::after {
    opacity: 0.5;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
}

.feature-line {
    margin-top: 1.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-line {
    opacity: 1;
}

/* Moments Section */
.moments {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-black) 100%);
    position: relative;
}

.moments::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    box-shadow: 0 0 10px var(--primary-red);
}

.moments-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
    padding-left: 60px;
}

.timeline-line {
    position: absolute;
    left: 130px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-red), var(--dark-red), var(--primary-red));
    box-shadow: 0 0 20px rgba(227, 75, 82, 0.5);
    z-index: 1;
}

.moments-container {
    position: relative;
    padding-left: 0;
}

.moment-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    padding-left: 180px;
}

.moment-item:last-child {
    margin-bottom: 0;
}

.moment-item.moment-left,
.moment-item.moment-right {
    flex-direction: row;
    justify-content: flex-start;
    padding-left: 180px;
}

.moment-time {
    position: absolute;
    left: 130px;
    transform: translateX(-100%);
    margin-right: 20px;
    width: 90px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(227, 75, 82, 0.4);
    z-index: 2;
    border: 2px solid var(--black);
    text-align: center;
    box-sizing: border-box;
}

.moment-content {
    background: linear-gradient(135deg, var(--medium-black) 0%, var(--dark-black) 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    max-width: 500px;
    width: 100%;
    margin-left: 20px;
}

.moment-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.moment-content:hover::before {
    transform: scaleX(1);
}

.moment-content:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(227, 75, 82, 0.3), 0 0 30px rgba(227, 75, 82, 0.2);
}

.moment-left .moment-content,
.moment-right .moment-content {
    text-align: left;
}

.moment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(227, 75, 82, 0.4), 0 0 30px rgba(227, 75, 82, 0.2);
    position: relative;
}

.moment-left .moment-icon {
    margin-left: auto;
}

.moment-icon i {
    font-size: 1.5rem;
    color: var(--white);
    z-index: 1;
}

.moment-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.moment-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Screenshots Section */
.screenshots {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-black) 0%, var(--black) 100%);
    position: relative;
}

.screenshots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    box-shadow: 0 0 10px var(--primary-red);
}

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

.screenshot-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: 2px solid rgba(227, 75, 82, 0.2);
}

.screenshot-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(227, 75, 82, 0.4), 0 0 40px rgba(227, 75, 82, 0.3);
    border-color: var(--primary-red);
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.screenshot-item:hover .screenshot-img {
    transform: scale(1.05);
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.screenshot-item:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Highlights Section */
.highlights {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-black) 100%);
    position: relative;
}

.highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    box-shadow: 0 0 10px var(--primary-red);
}

.highlights-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.highlight-item {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.highlight-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(227, 75, 82, 0.4), 0 0 40px rgba(227, 75, 82, 0.2);
    position: relative;
}

.highlight-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid var(--primary-red);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

.highlight-icon i {
    font-size: 2.5rem;
    color: var(--white);
    z-index: 1;
}

.highlight-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-red);
    font-family: 'Poppins', sans-serif;
}

.highlight-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.highlight-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    margin: 0 auto;
    max-width: 300px;
    box-shadow: 0 0 10px var(--primary-red);
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-black) 0%, var(--black) 50%, var(--dark-black) 100%);
    color: var(--white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    box-shadow: 0 0 10px var(--primary-red);
}

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

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    color: var(--primary-red);
    position: relative;
    padding-bottom: 1rem;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    box-shadow: 0 0 10px var(--primary-red);
}

.about-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    position: relative;
    padding: 1rem;
}

.stat::before,
.stat::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 30px;
    background: var(--primary-red);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.5;
}

.stat::before {
    top: 0;
}

.stat::after {
    bottom: 0;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-red);
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 0 20px rgba(227, 75, 82, 0.5);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Download Section */
.download {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-black) 0%, var(--black) 100%);
    text-align: center;
    position: relative;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    box-shadow: 0 0 10px var(--primary-red);
}

.download-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.download-tagline {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
    font-weight: 600;
}

.download-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.download-feature {
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(227, 75, 82, 0.3);
}

.download-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.download-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.download-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.download-info i {
    color: var(--primary-red);
}

/* Download Toast */
.download-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(227, 75, 82, 0.4), 0 0 20px rgba(227, 75, 82, 0.3);
    font-weight: 600;
    font-size: 1rem;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    border: 2px solid var(--primary-red);
}

.download-toast.show {
    transform: translateX(0);
    opacity: 1;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
    border-top: 2px solid var(--primary-red);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    box-shadow: 0 0 10px var(--primary-red);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.footer-logo .logo-img {
    margin-right: 10px;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 1rem auto;
    padding: 1rem;
    background: rgba(227, 75, 82, 0.1);
    border-left: 3px solid var(--primary-red);
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.footer-content p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
}

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

.footer-link:hover {
    opacity: 1;
    color: var(--primary-red);
}

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

.footer-link i {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .timeline-line {
        left: 100px;
    }
    
    .moments-container {
        padding-left: 0;
    }
    
    .moment-item {
        padding-left: 140px !important;
    }
    
    .moment-item.moment-left,
    .moment-item.moment-right {
        padding-left: 140px !important;
        flex-direction: row;
    }
    
    .moment-time {
        left: 100px;
        transform: translateX(-100%);
        margin-right: 15px;
        width: 80px;
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .moment-content {
        max-width: 100%;
        margin-left: 15px;
        text-align: left !important;
    }
    
    .moment-icon {
        margin: 0 0 1rem 0;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(227, 75, 82, 0.3);
        padding: 2rem 0;
        border-top: 2px solid var(--primary-red);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
        padding: 0 16px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-screenshots {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-screenshot {
        width: 180px;
    }
    
    .screenshot-main .hero-screenshot {
        width: 180px;
    }
    
    .screenshot-side {
        margin-top: 0;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 2rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stat-label {
        font-size: 0.8rem;
    }
    
    /* Features Section Mobile */
    .features {
        padding: 60px 0;
    }
    
    .features-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-main-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon-large {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon-large i {
        font-size: 2rem;
    }
    
    .feature-main-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-main-card p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .feature-card-compact {
        padding: 1.5rem;
    }
    
    /* Moments Section Mobile */
    .moments {
        padding: 60px 0;
    }
    
    .moments-timeline {
        padding-left: 0;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .moments-container {
        padding-left: 0;
    }
    
    .moment-item {
        padding-left: 3rem !important;
        padding-right: 0 !important;
        margin-bottom: 3rem;
        flex-direction: column;
    }
    
    .moment-item.moment-left,
    .moment-item.moment-right {
        padding-left: 3rem !important;
        padding-right: 0 !important;
        flex-direction: column;
    }
    
    .moment-time {
        position: relative;
        left: auto;
        transform: none;
        margin-right: 0;
        margin-bottom: 1rem;
        width: auto;
        display: inline-block;
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .moment-content {
        padding: 1.5rem;
        max-width: 100%;
        margin-left: 0;
        text-align: center !important;
    }
    
    .moment-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
    }
    
    .moment-icon i {
        font-size: 1.3rem;
    }
    
    .moment-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .moment-content p {
        font-size: 0.9rem;
    }
    
    /* Screenshots Section Mobile */
    .screenshots {
        padding: 60px 0;
    }
    
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Highlights Section Mobile */
    .highlights {
        padding: 60px 0;
    }
    
    .highlight-item {
        padding: 1.5rem;
    }
    
    .highlight-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .highlight-icon i {
        font-size: 2rem;
    }
    
    .highlight-item h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .highlight-item p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    /* About Section Mobile */
    .about {
        padding: 60px 0;
    }
    
    .about-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .about-content p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }
    
    .about-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    /* Download Section Mobile */
    .download {
        padding: 60px 0;
    }
    
    .download-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .download-tagline {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .download-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .download-features {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .download-feature {
        font-size: 0.85rem;
        padding: 0.4rem 1.2rem;
    }
    
    .download-buttons {
        gap: 1.5rem;
    }
    
    .download-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .download-info p {
        font-size: 0.9rem;
    }
    
    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .section-intro {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 30px 0;
    }
    
    .footer-links {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-disclaimer {
        font-size: 0.85rem;
        padding: 0.8rem;
    }
    
    /* Download Toast Mobile */
    .download-toast {
        top: 10px;
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
        text-align: center;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .download-toast.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    /* Hero Section Small Mobile */
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero-container {
        gap: 2rem;
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.35rem 0.9rem;
    }
    
    .hero-screenshot {
        width: 200px;
    }
    
    .screenshot-main .hero-screenshot {
        width: 200px;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-stat-number {
        font-size: 1.3rem;
    }
    
    .hero-stat-label {
        font-size: 0.75rem;
    }
    
    /* Features Small Mobile */
    .features {
        padding: 50px 0;
    }
    
    .feature-main-card {
        padding: 1.5rem 1.2rem;
    }
    
    .feature-icon-large {
        width: 70px;
        height: 70px;
        margin-bottom: 1.2rem;
    }
    
    .feature-icon-large i {
        font-size: 1.8rem;
    }
    
    .feature-main-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-main-card p {
        font-size: 0.95rem;
    }
    
    .feature-card-compact {
        padding: 1.2rem;
    }
    
    .feature-card-compact h3 {
        font-size: 1.1rem;
    }
    
    .feature-card-compact p {
        font-size: 0.9rem;
    }
    
    /* Moments Small Mobile */
    .moments {
        padding: 50px 0;
    }
    
    .moments-timeline {
        padding-left: 0;
    }
    
    .timeline-line {
        left: 15px;
    }
    
    .moments-container {
        padding-left: 0;
    }
    
    .moment-item {
        padding-left: 2.5rem !important;
        margin-bottom: 2.5rem;
        flex-direction: column;
    }
    
    .moment-item.moment-left,
    .moment-item.moment-right {
        padding-left: 2.5rem !important;
        padding-right: 0 !important;
        flex-direction: column;
    }
    
    .moment-time {
        position: relative;
        left: auto;
        transform: none;
        margin-right: 0;
        margin-bottom: 1rem;
        width: auto;
        display: inline-block;
        font-size: 0.75rem;
        padding: 0.35rem 0.9rem;
    }
    
    .moment-content {
        padding: 1.2rem;
        margin-left: 0;
        text-align: center !important;
    }
    
    .moment-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto 1rem;
    }
    
    .moment-icon i {
        font-size: 1.2rem;
    }
    
    .moment-content h3 {
        font-size: 1rem;
    }
    
    .moment-content p {
        font-size: 0.85rem;
    }
    
    /* Screenshots Small Mobile */
    .screenshots {
        padding: 50px 0;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Highlights Small Mobile */
    .highlights {
        padding: 50px 0;
    }
    
    .highlight-item {
        padding: 1.2rem;
    }
    
    .highlight-icon {
        width: 70px;
        height: 70px;
    }
    
    .highlight-icon i {
        font-size: 1.8rem;
    }
    
    .highlight-item h3 {
        font-size: 1.3rem;
    }
    
    .highlight-item p {
        font-size: 0.95rem;
    }
    
    /* About Small Mobile */
    .about {
        padding: 50px 0;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .about-content p {
        font-size: 0.95rem;
    }
    
    .about-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Download Small Mobile */
    .download {
        padding: 50px 0;
    }
    
    .download-content h2 {
        font-size: 1.8rem;
    }
    
    .download-tagline {
        font-size: 1.1rem;
    }
    
    .download-description {
        font-size: 0.95rem;
    }
    
    .download-features {
        gap: 0.8rem;
        flex-wrap: wrap;
    }
    
    .download-feature {
        font-size: 0.8rem;
        padding: 0.35rem 1rem;
    }
    
    /* Section Headers Small Mobile */
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-intro {
        font-size: 0.95rem;
    }
    
    /* Buttons Small Mobile */
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Footer Small Mobile */
    .footer {
        padding: 25px 0;
    }
    
    .footer-logo {
        font-size: 1.3rem;
    }
    
    .footer-disclaimer {
        font-size: 0.8rem;
        padding: 0.7rem;
    }
    
    .footer-content p {
        font-size: 0.85rem;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
}

