:root {
    --primary: #6366f1;
    --primary-glow: rgba(99, 102, 241, 0.4);
    --bg: #edf2ff;
    --card-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text: #000000;
    --text-muted: #94a3b8;
    --nav-bg: rgba(11, 15, 26, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Modern Hero Section */
.hero-section {
    width: 100%;
    min-height: 650px;
    color: var(--text);
    padding: 80px 10%;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(99, 102, 241, 0.08);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-badge {
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #4f46e5;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #1e293b;
}

.gradient-text {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 60%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-description {
    color: #475569;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.55);
}

.hero-btn.secondary {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #1e293b;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-btn.secondary:hover {
    transform: translateY(-3px);
    background: rgba(0, 0, 0, 0.07);
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

/* 3D Orbiting Scene */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 480px;
    position: relative;
}

.scene-3d {
    position: relative;
    width: 500px;
    height: 500px;
    perspective: 1200px;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    align-items: center;
    will-change: transform;
}

/* Glowing Saturn Orbit Ring */
.orbit-ring {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    border: 2px solid rgba(99, 102, 241, 0.35);
    transform: rotateX(65deg) rotateY(0deg) rotateZ(0deg);
    box-shadow:
        0 0 15px rgba(99, 102, 241, 0.2),
        inset 0 0 15px rgba(99, 102, 241, 0.2);
    pointer-events: none;
    transform-style: preserve-3d;
}

/* Saturn Ring Glow Overlay for 3D realism */
.orbit-ring::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 4px solid rgba(192, 132, 252, 0.15);
    filter: blur(2px);
}

/* Central Axis Logo */
.central-logo-wrapper {
    position: absolute;
    width: 200px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    transform: translateZ(0);
    /* Anchored at Z = 0 */
}

.central-logo {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    filter: drop-shadow(0 8px 16px rgba(99, 102, 241, 0.35));
    z-index: 5;
}

.logo-glow {
    position: absolute;
    width: 250px;
    height: 150px;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.28) 0%, rgba(192, 132, 252, 0.05) 55%, transparent 75%);
    filter: blur(15px);
    pointer-events: none;
    z-index: -1;
    transform: translateZ(-10px);
}

/* Orbiting Icons */
.orbit-icons-container {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform: rotateX(65deg);
    pointer-events: none;
}

.orbit-icon {
    position: absolute;
    width: 96px;
    height: 96px;
    left: calc(50% - 48px);
    top: calc(50% - 48px);
    pointer-events: auto;
    cursor: pointer;
    transform-style: preserve-3d;
    will-change: transform, opacity;
    --radius: 220px;
    animation: orbit-flow 20s linear infinite;
    animation-delay: var(--delay);
}

.orbit-icon img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    object-fit: contain;
    padding: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Force high-quality 3D rasterization without scaling blur */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
}

.orbit-icon:hover img {
    transform: scale(1.25) translateZ(12px);
    border-color: #6366f1;
    box-shadow:
        0 8px 24px rgba(99, 102, 241, 0.25),
        0 0 15px rgba(99, 102, 241, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

/* Hover Pause States */
.orbit-icons-container:hover .orbit-icon {
    animation-play-state: paused;
}

/* Tooltips */
.orbit-icon::after {
    content: attr(data-name);
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%) scale(0.85);
    background: rgba(13, 12, 29, 0.95);
    border: 1px solid rgba(99, 102, 241, 0.4);
    color: #e2e8f0;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.orbit-icon:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1) translateY(-2px);
}

/* Tilted Billboard Orbit Animation */
@keyframes orbit-flow {
    0% {
        /* Starts on the right side of the ellipse */
        transform: rotateZ(0deg) translateX(var(--radius)) rotateZ(0deg) rotateX(-65deg) scale(0.75);
        opacity: 1;
        z-index: 5;
    }
    25% {
        /* Bottom/Front: closest to screen */
        transform: rotateZ(90deg) translateX(var(--radius)) rotateZ(-90deg) rotateX(-65deg) scale(1.0);
        opacity: 1;
        z-index: 10;
    }
    50% {
        /* Left side of the ellipse */
        transform: rotateZ(180deg) translateX(var(--radius)) rotateZ(-180deg) rotateX(-65deg) scale(0.75);
        opacity: 1;
        z-index: 5;
    }
    75% {
        /* Top/Back: furthest inside screen (behind the logo) */
        transform: rotateZ(270deg) translateX(var(--radius)) rotateZ(-270deg) rotateX(-65deg) scale(0.55);
        opacity: 1;
        z-index: 1;
    }
    100% {
        /* Back to the right side */
        transform: rotateZ(360deg) translateX(var(--radius)) rotateZ(-360deg) rotateX(-65deg) scale(0.75);
        opacity: 1;
        z-index: 5;
    }
}

/* Responsiveness */
@media (max-width: 992px) {
    .hero-section {
        padding: 60px 5%;
        text-align: center;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        height: 380px;
    }

    .scene-3d {
        width: 320px;
        height: 320px;
        perspective: 1000px;
    }

    .orbit-ring {
        width: 250px;
        height: 250px;
    }

    .central-logo-wrapper {
        width: 140px;
        height: 70px;
    }

    .central-logo {
        width: 100%;
        height: 100%;
        padding: 8px 12px;
    }

    .orbit-icon {
        width: 50px;
        height: 50px;
        left: calc(50% - 25px);
        top: calc(50% - 25px);
        --radius: 125px;
    }
}

nav {
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 0 10%;
    background-color: #fff;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

nav a:hover {
    color: var(--primary);
    background: rgba(99, 102, 241, 0.08);
}

/* Technology Section */
.tech-container {
    padding: 80px 10%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.tech-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #000 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tech-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    perspective: 1000px;
}

.tech-card {
    position: relative;
    padding: 40px;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tech-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tech-icon-wrapper {
    width: 120px;
    height: 120px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.tech-card:hover .tech-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.tech-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.tech-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
    position: relative;
    z-index: 2;
}

.tech-card-desc {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.tech-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
}

.tech-card:hover .tech-card-glow {
    opacity: 0.15;
}

/* Our Work Section */
.work-container {
    padding: 100px 10%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(to bottom, transparent, rgba(99, 102, 241, 0.03), transparent);
}

.work-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #000 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.work-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.work-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
}

.work-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.work-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.work-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.work-card:hover .work-image {
    transform: scale(1.1);
}

.work-content {
    padding: 30px;
}

.work-category {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.work-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}

.work-card-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.work-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.work-btn:hover {
    transform: translateX(5px);
    background: #4f46e5;
    box-shadow: 0 8px 25px var(--primary-glow);
}

/* More Apps Section */
.more-apps-section {
    padding: 80px 10%;
    background: #f8fafc;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
}

.more-apps-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 35px;
    color: #1e293b;
}

.more-apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.more-app-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.more-app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: var(--app-accent, #6366f1);
}

.more-app-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    object-fit: contain;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 4px;
    flex-shrink: 0;
}

.more-app-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.more-app-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.more-app-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .more-apps-section {
        padding: 50px 5%;
    }
    .more-apps-grid {
        grid-template-columns: 1fr;
    }
}

/* App Detail Navigation Bar */
.detail-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(99, 102, 241, 0.08);
    transition: all 0.3s ease;
}

.detail-nav-container {
    max-width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.detail-nav-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.detail-nav-logo-link:hover {
    transform: scale(1.02);
}

.detail-nav-logo {
    height: 38px;
    object-fit: contain;
}

.detail-nav-brand {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.5px;
}

.detail-nav-brand span {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Premium Back Button styling */
.app-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.15);
    color: var(--app-accent, #4f46e5);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    flex-shrink: 0;
}

.app-back-btn:hover {
    background: var(--app-accent, #4f46e5);
    color: #ffffff;
    border-color: var(--app-accent, #4f46e5);
    transform: translateX(-4px);
    box-shadow: 0 4px 15px var(--app-accent-glow, rgba(99, 102, 241, 0.25));
}

.app-back-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

/* Contact Section */
.contact-section {
    padding: 100px 10%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 32px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #000 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    color: var(--text);
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px var(--primary-glow);
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

.contact-btn {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.55);
}

/* Footer Section */
footer {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 80px 10% 30px 10%;
    color: var(--text);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: left;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

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

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-link:hover {
    transform: translateY(-3px) rotate(8deg);
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 8px 20px var(--primary-glow);
}

.footer-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
    position: relative;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: left;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #64748b;
    font-size: 0.95rem;
}

.footer-info-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    color: #94a3b8;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}