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

:root {
    /* FunFlick Color Palette - Deep Blue Gradient */
    --primary-dark: #0d212b;
    --primary-medium: #003a4e;
    --title-color: #14276e;
    --accent-blue: #005a7a;
    --accent-light: #007ba3;
    
    /* Gradient Colors */
    --main-gradient: linear-gradient(135deg, #0d212b 0%, #003a4e 50%, #0d212b 100%);
    --reverse-gradient: linear-gradient(135deg, #003a4e 0%, #0d212b 100%);
    --accent-gradient: linear-gradient(135deg, #14276e 0%, #003a4e 100%);
    
    /* Glow Colors */
    --blue-glow: rgba(0, 90, 122, 0.5);
    --title-glow: rgba(20, 39, 110, 0.6);
    
    /* Text Colors */
    --white: #FFFFFF;
    --gray: #888888;
    --light-gray: #CCCCCC;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--white);
    overflow-x: hidden;
    background: var(--main-gradient);
    position: relative;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

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

/* Animated Background - Wave Style */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: var(--main-gradient);
}

.wave {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(0, 90, 122, 0.1) 0%, transparent 70%);
    animation: waveMove 20s infinite ease-in-out;
}

.wave-1 {
    top: -50%;
    left: -50%;
    animation-delay: 0s;
}

.wave-2 {
    top: -30%;
    right: -50%;
    animation-delay: 7s;
    background: radial-gradient(ellipse at center, rgba(20, 39, 110, 0.08) 0%, transparent 70%);
}

.wave-3 {
    bottom: -50%;
    left: 0;
    animation-delay: 14s;
    background: radial-gradient(ellipse at center, rgba(0, 123, 163, 0.1) 0%, transparent 70%);
}

@keyframes waveMove {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(5deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 33, 43, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 90, 122, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    padding: 1.2rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px var(--accent-light));
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 0 20px var(--accent-light);
    letter-spacing: 1px;
}

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

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

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

.nav-menu a:hover {
    color: var(--accent-light);
    text-shadow: 0 0 10px var(--accent-light);
}

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(13, 33, 43, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid rgba(0, 90, 122, 0.3);
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }
}

/* Hero Section - Full Screen Centered */
.hero {
    min-height: 130vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 20px 150px;
    text-align: center;
    z-index: 10;
    margin-bottom: 0;
}

.hero-wrapper {
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 2rem;
    padding: 0.6rem 1.8rem;
    background: rgba(0, 90, 122, 0.2);
    border: 1px solid rgba(0, 123, 163, 0.4);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.hero-badge span {
    color: var(--accent-light);
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 0 0 15px var(--accent-light);
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 6.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.title-word {
    color: var(--title-color);
    text-shadow: 
        -3px -3px 0 var(--white),
        3px -3px 0 var(--white),
        -3px 3px 0 var(--white),
        3px 3px 0 var(--white),
        0 0 30px var(--title-glow),
        0 0 60px var(--title-glow);
    display: inline-block;
    animation: wordFloat 3s ease-in-out infinite;
}

.title-word:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes wordFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-tagline {
    font-size: 1.8rem;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(0, 123, 163, 0.5);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-container {
    position: relative;
    margin: 2.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-banner {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(0, 90, 122, 0.4), 0 0 60px rgba(0, 90, 122, 0.3);
    border: 3px solid var(--accent-light);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.hero-banner:hover {
    transform: translateY(-10px) scale(1.02);
}

.hero-image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0.4;
    animation: glowPulse 3s ease-in-out infinite;
}

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

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.1rem 2.2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--white);
    box-shadow: 0 6px 25px rgba(0, 90, 122, 0.4), 0 0 35px rgba(0, 90, 122, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 90, 122, 0.6), 0 0 50px rgba(0, 90, 122, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-light);
    border: 2px solid var(--accent-light);
    box-shadow: 0 0 25px rgba(0, 123, 163, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 123, 163, 0.15);
    box-shadow: 0 0 35px rgba(0, 123, 163, 0.5);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.3rem 2.8rem;
    font-size: 1.1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--accent-light);
    border-bottom: 3px solid var(--accent-light);
    transform: rotate(45deg);
    box-shadow: 0 0 10px var(--accent-light);
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-banner {
        max-width: 300px;
    }
}

/* Highlights Section - Large Cards Alternating */
.highlights {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    background: var(--reverse-gradient);
    margin-top: -80px;
    padding-top: 200px;
}

.section-intro {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--title-color);
    text-shadow: 
        -2px -2px 0 var(--white),
        2px -2px 0 var(--white),
        -2px 2px 0 var(--white),
        2px 2px 0 var(--white),
        0 0 25px var(--title-glow),
        0 0 50px var(--title-glow);
}

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

.highlights-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 3rem;
    background: rgba(13, 33, 43, 0.6);
    border-radius: 30px;
    border: 1px solid rgba(0, 90, 122, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 123, 163, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.highlight-card:hover {
    transform: translateX(10px);
    border-color: var(--accent-light);
    box-shadow: 0 15px 50px rgba(0, 90, 122, 0.3), 0 0 70px rgba(0, 90, 122, 0.1);
}

.highlight-card:hover::before {
    opacity: 1;
}

.highlight-left {
    flex-direction: row;
}

.highlight-right {
    flex-direction: row-reverse;
}

.highlight-number {
    font-family: 'Poppins', sans-serif;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(0, 123, 163, 0.15);
    line-height: 1;
    min-width: 120px;
    text-align: center;
}

.highlight-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 90, 122, 0.2);
    border-radius: 20px;
    border: 2px solid var(--accent-light);
    margin-bottom: 1rem;
}

.highlight-icon i {
    font-size: 2.5rem;
    color: var(--accent-light);
    filter: drop-shadow(0 0 15px var(--accent-light));
}

.highlight-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-light);
    text-shadow: 0 0 15px rgba(0, 123, 163, 0.4);
}

.highlight-description {
    font-size: 1.1rem;
    color: var(--light-gray);
    line-height: 1.8;
}

@media (max-width: 968px) {
    .highlight-card {
        flex-direction: column !important;
        text-align: center;
        gap: 2rem;
    }
    
    .highlight-number {
        font-size: 4rem;
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .highlight-card {
        padding: 2rem;
    }
    
    .highlight-title {
        font-size: 1.5rem;
    }
}

/* Enjoy Section - Timeline Style */
.enjoy-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background: rgba(13, 33, 43, 0.5);
}

.enjoy-timeline {
    max-width: 800px;
    margin: 4rem auto;
    position: relative;
    padding-left: 3rem;
}

.enjoy-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-light), transparent);
    box-shadow: 0 0 20px var(--accent-light);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    align-items: flex-start;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3.5rem;
    top: 0.5rem;
    width: 20px;
    height: 20px;
    background: var(--accent-light);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent-light);
    border: 4px solid var(--primary-dark);
}

.timeline-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 90, 122, 0.2);
    border-radius: 15px;
    border: 2px solid var(--accent-light);
    flex-shrink: 0;
}

.timeline-icon i {
    font-size: 2rem;
    color: var(--accent-light);
    filter: drop-shadow(0 0 10px var(--accent-light));
}

.timeline-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 123, 163, 0.3);
}

.timeline-content p {
    color: var(--light-gray);
    font-size: 1.05rem;
    line-height: 1.6;
}

.enjoy-footer {
    text-align: center;
    margin-top: 4rem;
    font-size: 1.3rem;
    color: var(--accent-light);
    font-weight: 600;
    text-shadow: 0 0 15px rgba(0, 123, 163, 0.4);
}

@media (max-width: 768px) {
    .enjoy-timeline {
        padding-left: 2rem;
    }
    
    .timeline-item::before {
        left: -2.5rem;
    }
}

/* Screenshots Section - Slanted Layout */
.screenshots {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.screenshots-showcase {
    margin-top: 4rem;
    perspective: 1000px;
}

.screenshot-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
    position: relative;
}

.screenshot-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    border: 3px solid rgba(0, 90, 122, 0.3);
    background: rgba(13, 33, 43, 0.6);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    flex: 1;
    max-width: 22%;
    min-width: 200px;
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.screenshot-item:hover {
    transform: translateY(-15px) rotate(2deg);
    border-color: var(--accent-light);
    box-shadow: 0 20px 60px rgba(0, 90, 122, 0.4), 0 0 80px rgba(0, 90, 122, 0.2);
    z-index: 10;
}

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

.screenshot-2 {
    transform: rotate(-3deg);
}

.screenshot-3 {
    transform: rotate(2deg);
}

.screenshot-4 {
    transform: rotate(-2deg);
}

.screenshot-5 {
    transform: rotate(3deg);
}

.screenshot-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13, 33, 43, 0.95), transparent);
    padding: 1.5rem;
    color: var(--accent-light);
    font-weight: 600;
    text-align: center;
    text-shadow: 0 0 10px var(--accent-light);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

@media (max-width: 1200px) {
    .screenshot-stack {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .screenshot-item {
        max-width: 48%;
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .screenshot-stack {
        flex-direction: column;
    }
    
    .screenshot-item {
        transform: none !important;
        max-width: 100%;
        min-width: auto;
    }
}

/* Download Section - Split Layout */
.download {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    background: var(--reverse-gradient);
}

.download-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.download-content {
    position: relative;
    z-index: 2;
}

.download-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--title-color);
    text-shadow: 
        -2px -2px 0 var(--white),
        2px -2px 0 var(--white),
        -2px 2px 0 var(--white),
        2px 2px 0 var(--white),
        0 0 25px var(--title-glow),
        0 0 50px var(--title-glow);
}

.download-tagline {
    font-size: 1.4rem;
    color: var(--accent-light);
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(0, 123, 163, 0.4);
}

.download-description {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.download-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.download-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(0, 90, 122, 0.15);
    border: 1px solid rgba(0, 90, 122, 0.3);
    border-radius: 15px;
    color: var(--accent-light);
    font-weight: 500;
    transition: all 0.3s ease;
}

.download-feature-item:hover {
    background: rgba(0, 90, 122, 0.25);
    border-color: var(--accent-light);
    transform: translateX(5px);
}

.download-feature-item i {
    color: var(--accent-light);
    filter: drop-shadow(0 0 5px var(--accent-light));
    font-size: 1.2rem;
}

.download-buttons {
    margin-bottom: 2rem;
}

.download-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.download-info p {
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
}

.download-info i {
    color: var(--accent-light);
    filter: drop-shadow(0 0 5px var(--accent-light));
}

.download-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 550px;
    min-height: 550px;
}

.download-visual-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
    filter: blur(60px);
    opacity: 0.3;
    animation: visualGlow 3s ease-in-out infinite;
}

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

.download-visual-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-screenshot {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: 90%;
    min-height: 450px;
    border-radius: 30px;
    border: 3px solid var(--accent-light);
    box-shadow: 0 20px 60px rgba(0, 90, 122, 0.4), 0 0 60px rgba(0, 90, 122, 0.3);
    animation: floatScreenshot 3s ease-in-out infinite;
    object-fit: contain;
}

@keyframes floatScreenshot {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.download-toast {
    position: fixed;
    top: 100px;
    right: 30px;
    transform: translateX(100px);
    background: rgba(13, 33, 43, 0.95);
    border: 2px solid var(--accent-light);
    border-radius: 50px;
    padding: 1.2rem 2.5rem;
    color: var(--accent-light);
    font-weight: 600;
    box-shadow: 0 6px 30px rgba(0, 90, 122, 0.4), 0 0 40px rgba(0, 90, 122, 0.2);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10000;
    backdrop-filter: blur(15px);
    white-space: nowrap;
}

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

@media (max-width: 768px) {
    .download-toast {
        top: 80px;
        right: 15px;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 968px) {
    .download-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .download-visual {
        height: 400px;
        min-height: 400px;
    }
    
    .download-screenshot {
        min-height: 350px;
        height: 85%;
    }
    
    .download-features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .download-title {
        font-size: 2.2rem;
    }
    
    .download-visual-content {
        font-size: 5rem;
    }
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background: rgba(13, 33, 43, 0.9);
    border-top: 1px solid rgba(0, 90, 122, 0.3);
    position: relative;
    z-index: 1;
}

.footer-content {
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 45px;
    height: 45px;
    filter: drop-shadow(0 0 10px var(--accent-light));
}

.footer-logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 0 20px var(--accent-light);
}

.footer-disclaimer {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-copyright {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

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

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--accent-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(0, 123, 163, 0.3);
    background: rgba(0, 123, 163, 0.05);
}

.footer-link:hover {
    color: var(--white);
    border-color: var(--accent-light);
    background: rgba(0, 123, 163, 0.15);
    box-shadow: 0 0 20px rgba(0, 123, 163, 0.3);
    transform: translateY(-2px);
}

.footer-link i {
    filter: drop-shadow(0 0 5px var(--accent-light));
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight-card,
.timeline-item,
.screenshot-item {
    animation: fadeInUp 0.8s ease-out;
}
