:root {
    --bg-color: #060606;
    --nav-bg: rgba(10, 10, 10, 0.8);
    --accent-red: #d92323;
    --accent-dark-red: #5e0f0f;
    --text-white: #ffffff;
    --text-gray: #a1a1a1;
    --nav-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.app-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #050505;
}

.dotted-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
    mask-image: radial-gradient(circle at center, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 100%);
}

.red-glow-top {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 600px;
    background: radial-gradient(circle, rgba(160, 20, 20, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
}

.logo-brand i {
    font-size: 1.8rem;
    color: var(--accent-red);
}

.nav-center {
    display: flex;
    gap: 5px;
    background: rgba(0, 0, 0, 0.3);
    padding: 4px;
    border-radius: 50px;
    border: 1px solid var(--nav-border);
}

.nav-pill {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 24px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.nav-pill i {
    max-width: 0;
    opacity: 0;
    transform: translateX(-10px) scale(0.5);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    margin-right: 0;
}

.nav-pill:hover {
    color: #fff;
}

.nav-pill.active {
    background: linear-gradient(180deg, #3d1010, #220505);
    color: #fff;
    border: 1px solid rgba(217, 35, 35, 0.4);
    box-shadow:
        inset 0 1px 0 rgba(255, 100, 100, 0.2),
        0 0 20px rgba(217, 35, 35, 0.2);
}

.nav-pill.active i {
    max-width: 20px;
    opacity: 1;
    transform: translateX(0) scale(1);
    margin-right: 8px;
}

.partners-section, .team-section {
    width: 100%;
    margin-top: 60px;
    margin-bottom: 60px;
}

.partners-creative-grid, .team-creative-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.entity-creative-card {
    background: rgba(14, 14, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-card {
    border-top: 3px solid var(--accent-red);
}

.team-card {
    border-top: 3px solid #b700ff;
}

.entity-creative-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.partner-card:hover {
    box-shadow: 0 15px 35px rgba(217, 35, 35, 0.2);
}

.team-card:hover {
    box-shadow: 0 15px 35px rgba(183, 0, 255, 0.2);
}

.entity-img-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.partner-card .entity-img-wrapper {
    border-color: rgba(217, 35, 35, 0.5);
}

.team-card .entity-img-wrapper {
    border-color: rgba(183, 0, 255, 0.5);
}

.entity-creative-card:hover .entity-img-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.entity-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.entity-info h3 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 2;
}

.entity-role {
    color: #aaa;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.entity-glow {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

.partner-card .entity-glow {
    background: rgba(217, 35, 35, 0.6);
}

.team-card .entity-glow {
    background: rgba(183, 0, 255, 0.6);
}

.entity-creative-card:hover .entity-glow {
    opacity: 1;
    bottom: -20px;
}

.entity-info p.entity-desc {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 15px;
    margin-bottom: 20px;
    font-family: 'JetBrains Mono', monospace;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    height: 0;
    overflow: hidden;
}

.entity-creative-card:hover .entity-desc {
    opacity: 1;
    transform: translateY(0);
    height: 40px;
}

.entity-contact {
    margin-top: auto;
    width: 100%;
    position: relative;
    z-index: 3;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    height: 0;
    overflow: hidden;
}

.entity-creative-card:hover .entity-contact {
    opacity: 1;
    transform: translateY(0);
    margin-top: 20px;
    height: 40px;
}

.entity-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    color: #5865F2;
    padding: 10px 0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
}

.entity-link-btn:hover {
    background: #5865F2;
    color: #fff;
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.4);
}

.partner-card .entity-link-btn:hover {
    background: #d92323;
    border-color: #d92323;
    box-shadow: 0 0 15px rgba(217, 35, 35, 0.4);
}

.team-card .entity-link-btn:hover {
    background: #b700ff;
    border-color: #b700ff;
    box-shadow: 0 0 15px rgba(183, 0, 255, 0.4);
}

.discord-login {
    background: #171926;
    color: #5865F2;
    padding: 10px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(88, 101, 242, 0.2);
    transition: all 0.3s ease;
}

.discord-login:hover {
    background: #5865F2;
    color: #fff;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.4);
}

.hero-section {
    padding-top: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 50px;
    min-height: 80vh;
    width: 100%;
}

.content-tab {
    width: 100%;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.brand-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    letter-spacing: -1px;
    color: #fff;
}

.logo-icon-large {
    color: var(--accent-red);
    font-size: 3rem;
}

.outline-text {
    -webkit-text-stroke: 1px #fff;
    color: transparent;
    opacity: 0.8;
}

.hero-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.red-text {
    background: linear-gradient(180deg, #ff4d4d, #990000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 30px;
    opacity: 0.8;
}

.hero-description {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.hero-description strong {
    color: #fff;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.stat-badge {
    background: #0e0e0e;
    border: 1px solid #222;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    color: #888;
}

.stat-badge strong {
    color: #fff;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    padding: 20px;
}

.about-text {
    flex: 1;
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
}

.about-text p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.about-image {
    flex: 0 0 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent-red);
    box-shadow: 0 0 30px rgba(217, 35, 35, 0.4);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-socials {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    transform: translateY(-5px);
}

.social-btn.discord:hover {
    background: #5865F2;
    border-color: #5865F2;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.4);
    transform: translateY(-5px);
}

@media(max-width:900px) {

    .nav-center {
        display: none;
    }


    .discord-login {
        display: none;
    }


    .logo-brand {
        display: flex;
    }


    .navbar {
        justify-content: space-between;
    }


    .hero-headline {
        font-size: 2.5rem;
    }

    .brand-title {
        font-size: 2rem;
    }

    .stats-row {
        flex-direction: column;
        align-items: center;
    }

    .about-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .about-image {
        width: 200px;
        height: 200px;
        flex: none;
    }

    .about-socials {
        justify-content: center;
    }
}



.services-container {
    padding-top: 50px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 80px;
    padding-left: 20px;
    padding-right: 20px;
}

.service-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-subtitle {
    color: #888;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-top: 10px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    width: 100%;
}

.paragon-card {
    background: rgba(14, 14, 18, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.paragon-card:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 35, 35, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(217, 35, 35, 0.1);
}

.card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    text-align: center;
}

.card-header i {
    font-size: 2rem;
    margin-bottom: 15px;
}

.icon-red {
    color: #d92323;
    text-shadow: 0 0 15px rgba(217, 35, 35, 0.4);
}

.icon-gold {
    color: #ffb700;
    text-shadow: 0 0 15px rgba(255, 183, 0, 0.4);
}

.card-header h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.premium-border {
    border: 1px solid rgba(255, 183, 0, 0.15);
}

.badge-premium {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ffb700, #ff8800);
    color: #000;
    font-weight: 800;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 10px;
    z-index: 5;
    box-shadow: 0 0 10px rgba(255, 183, 0, 0.4);
}

.card-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.project-lang-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 5px;
}

.project-lang-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 10px;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.project-lang-tag:hover {
    background: rgba(217, 35, 35, 0.1);
    border-color: rgba(217, 35, 35, 0.3);
    transform: translateY(-2px);
}

.project-lang-tag img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.project-lang-tag span {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}

.always-show-features {
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
}

.feature-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #888;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-title i {
    color: var(--accent-red);
}

.price-tag {
    font-family: 'JetBrains Mono', monospace;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.dev-tag {
    color: #888;
    font-size: 0.85rem;
}

.btn-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.btn {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: rgba(217, 35, 35, 0.1);
    border: 1px solid rgba(217, 35, 35, 0.3);
    color: #ff6666;
}

.btn-primary:hover {
    background: #d92323;
    color: #fff;
    box-shadow: 0 0 15px rgba(217, 35, 35, 0.4);
}

.btn-gold {
    background: rgba(255, 183, 0, 0.1);
    border: 1px solid rgba(255, 183, 0, 0.3);
    color: #ffd766;
}

.btn-gold:hover {
    background: #ffb700;
    color: #000;
}

.btn-secondary {
    background: #1e1e24;
    border: 1px solid #333;
    color: #aaa;
}

.btn-secondary:hover {
    background: #5865F2;
    color: #fff;
    border-color: #5865F2;
}

.show-more {
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
}

.show-more summary {
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: #aaa;
    list-style: none;
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.show-more summary:hover {
    color: #fff;
}

.show-more summary i {
    color: inherit;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
}

.f-item {
    font-size: 0.85rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.f-item i {
    width: 20px;
    text-align: center;
    filter: drop-shadow(0 0 5px currentColor);
}

.paragon-card .f-item i {
    color: #d92323;
}

.premium-border .f-item i {
    color: #ffb700;
}

.nightmare-card {
    position: relative;
    overflow: visible !important;
    border: 1px solid rgba(120, 80, 200, 0.3);
    background: linear-gradient(180deg, rgba(15, 10, 25, 0.95), rgba(10, 5, 20, 0.9));
    border-radius: 20px;
    padding: 30px;
    box-shadow:
        0 10px 40px rgba(40, 10, 80, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 60px rgba(140, 30, 255, 0.15);
    animation: cardPulse 6s ease-in-out infinite;
}

@keyframes cardPulse {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(40, 10, 80, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 30px rgba(140, 30, 255, 0.1);
    }

    50% {
        box-shadow: 0 15px 50px rgba(80, 20, 160, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 70px rgba(160, 50, 255, 0.3);
    }
}

.nightmare-card::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(90deg, transparent, rgba(140, 60, 255, 0.15), rgba(160, 80, 255, 0.1), transparent);
    border-radius: 30px;
    pointer-events: none;
    z-index: -1;
    animation: auraFlow 4s linear infinite;
    filter: blur(20px);
}

@keyframes auraFlow {
    0% {
        background-position: -200% 0%;
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        background-position: 200% 0%;
        opacity: 0.4;
    }
}

.nightmare-card .card-header i {
    font-size: 2.8rem;
    color: #b39cff;
    text-shadow: 0 0 20px rgba(140, 90, 255, 0.6);
    animation: iconGlow 3s ease-in-out infinite alternate;
}

@keyframes iconGlow {
    from {
        filter: drop-shadow(0 0 5px rgba(140, 90, 255, 0.5));
    }

    to {
        filter: drop-shadow(0 0 20px rgba(160, 110, 255, 0.9));
    }
}

.nightmare-title {
    color: #efeefe;
    font-weight: 900;
    font-size: 1.5rem;
    text-shadow: 0 0 15px rgba(120, 80, 255, 0.4);
    margin-top: 10px;
}

.ghost-sub {
    display: block;
    font-size: 0.85rem;
    color: #b7b1ff;
    font-weight: 400;
    letter-spacing: 1px;
}

.beta-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(90deg, #6f4bff, #3ec5ff);
    color: #0e0e1a;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    box-shadow: 0 0 15px rgba(100, 80, 255, 0.5);
    animation: badgePulse 2s infinite;
}

.nightmare-btn {
    background: rgba(120, 60, 255, 0.15);
    border: 1px solid rgba(140, 80, 255, 0.4);
    color: #e6dcff;
}

.nightmare-btn:hover {
    background: rgba(140, 80, 255, 0.3);
    box-shadow: 0 0 20px rgba(140, 80, 255, 0.5);
    color: #fff;
}

.nightmare-details {
    border-color: rgba(120, 80, 255, 0.3);
    background: rgba(20, 10, 40, 0.4);
}

.nightmare-details summary {
    color: #b39cff;
}

.nightmare-details .f-item i {
    color: #b39cff;
}




.store-container {
    padding: 50px 20px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

.store-top-header {
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(180deg, rgba(30, 0, 0, 0.8), rgba(0, 0, 0, 0));
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.store-top-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.store-tags {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tag {
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
}

.tag-red {
    background: #ff3333;
    box-shadow: 0 0 10px #ff3333;
}

.tag-purple {
    background: #aa00ff;
    box-shadow: 0 0 10px #aa00ff;
    color: #fff;
}

.tag-yellow {
    background: #ffcc00;
    box-shadow: 0 0 10px #ffcc00;
}

.tag-green {
    background: #00cc00;
    box-shadow: 0 0 10px #00cc00;
}

.store-category-row {
    margin-bottom: 80px;
    position: relative;
    padding-left: 15px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.cat-label {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.label-red {
    background: #330000;
    color: #ff3333;
    border: 1px solid #ff3333;
}

.label-purple {
    background: #1a0033;
    color: #aa00ff;
    border: 1px solid #aa00ff;
}

.cat-title {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 30px;
    color: #fff;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.store-card {
    background: #0a0a0a;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.red-theme {
    border-top: 3px solid #ff3333;
}

.purple-theme {
    border-top: 3px solid #aa00ff;
}

.store-card:hover {
    transform: translateY(-5px);
    background: #111;
}

.store-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.store-price {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.store-price .currency {
    font-size: 0.9rem;
    color: #888;
    font-weight: 400;
}

.store-price .time {
    font-size: 0.8rem;
    color: #888;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 5px;
}

.store-desc {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.5;
    margin-bottom: 25px;
    min-height: 60px;
}

.store-btn {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    transition: 0.3s;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-red:hover {
    background: #7a0000;
    border-color: #ff3333;
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.4);
}

.btn-purple:hover {
    background: #4a007a;
    border-color: #aa00ff;
    box-shadow: 0 0 15px rgba(170, 0, 255, 0.4);
}

.store-features p {
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.store-features ul {
    list-style: none;
}

.store-features li {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.store-features li i {
    font-size: 0.7rem;
    color: #fff;
}

.store-learn-more {
    margin-top: auto;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.store-learn-more:hover {
    background: rgba(255, 255, 255, 0.1);
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 90%;
    max-width: 800px;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

#modal-title {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.modal-gallery {
    position: relative;
    height: 400px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid #333;
}

.img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.nav-btn {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.2s;
}

.nav-btn:hover {
    background: rgba(217, 35, 35, 0.8);
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.modal-buy-btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
}



.others-container {
    padding: 80px 20px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.neuro-card {
    background: #050505;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    position: relative;
    max-width: 1100px;
}


.neuro-header {
    height: 120px;
    width: 100%;
    background-image:
        radial-gradient(rgba(120, 80, 255, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, #050505 0%, rgba(30, 10, 60, 0.5) 50%, #050505 100%);
    background-size: 8px 8px, 100% 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.neuro-body {
    padding: 40px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}


.neuro-left {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}


.neuro-logo-wrapper {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(100, 200, 255, 0.1);
}

.neuro-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.neuro-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.neuro-desc {
    color: #888;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.neuro-divider {
    height: 2px;
    background: repeating-linear-gradient(90deg, #333 0, #333 4px, transparent 4px, transparent 8px);
    margin-bottom: 25px;
    opacity: 0.5;
}


.neuro-explore-btn {
    background: #0f1219;
    color: #5887ff;
    padding: 15px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #1e2538;
    transition: 0.3s;
    margin-top: auto;
}

.neuro-explore-btn:hover {
    background: #151a25;
    border-color: #5887ff;
    color: #fff;
}


.neuro-right {
    flex: 1.5;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.neuro-feature-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: 0.3s;
    position: relative;
}

.neuro-feature-box:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.feature-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #333;
    font-size: 0.8rem;
}

.neuro-feature-box h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
    margin-top: 10px;
    font-family: 'Inter', sans-serif;
}

.neuro-feature-box p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.5;
}

@media(max-width: 900px) {
    .neuro-body {
        flex-direction: column;
        gap: 40px;
    }

    .neuro-right {
        grid-template-columns: 1fr;
    }
}



.resources-container {
    padding: 80px 20px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.resources-grid {
    display: flex;
    justify-content: center;
    width: 100%;
}

.resource-card {
    background: linear-gradient(145deg, #0a0a0b, #050505);
    border: 1px solid rgba(0, 255, 255, 0.1);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: cyan;
    box-shadow: 0 0 15px cyan;
}

.resource-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.15);
}

.res-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.res-icon-wrapper i {
    font-size: 3.5rem;
    color: #00ffff;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.6));
}

.res-icon-wrapper .sub-icon {
    font-size: 1.5rem;
    position: absolute;
    bottom: -5px;
    right: -10px;
    color: #fff;
    background: #000;
    border-radius: 50%;
    padding: 5px;
    border: 2px solid #00ffff;
}

.res-title {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.res-desc {
    color: #a1a1a1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

.res-btn {
    display: inline-block;
    padding: 15px 35px;
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    border: 1px solid rgba(0, 255, 255, 0.4);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.res-btn i {
    margin-left: 10px;
    transition: 0.3s;
}

.res-btn:hover {
    background: #00ffff;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.res-btn:hover i {
    transform: translateX(5px);
}



.tech-stack-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
    margin-bottom: 30px;
}

.tech-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.tech-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.tech-card img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.tech-card span {
    color: #ccc;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}

@media(max-width: 900px) {
    .tech-stack-row {
        justify-content: center;
    }
}




.hamburger-menu {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    margin-left: 15px;
    z-index: 101;
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(15px);
    z-index: 99;
    flex-direction: column;
    padding: 30px;
    animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.mobile-link {
    font-size: 1.2rem;
    color: #ccc;
    text-decoration: none;
    font-weight: 600;
    padding: 15px;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.mobile-link i {
    margin-right: 10px;
    color: var(--accent-red);
}

.mobile-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}


@media(max-width: 900px) {
    .hamburger-menu {
        display: block;
    }
}



.floating-marquee {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;

    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;

    animation: marqueeScroll 25s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.float-card {
    width: 260px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.float-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(217, 35, 35, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(217, 35, 35, 0.15);
}

.float-img {
    width: 100%;
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}


.float-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.9;
    transition: 0.3s;
}

.float-card:hover .float-img img {
    opacity: 1;
    transform: scale(1.05);
}

.float-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px;
}

.float-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.float-rating {
    font-size: 0.85rem;
    color: #ffd700;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 215, 0, 0.1);
    padding: 4px 8px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.float-rating i {
    font-size: 0.75rem;
}


.discord-card-wrapper {
    margin: 20px 0;
    max-width: 400px;
}


.discord-card-link {
    text-decoration: none;
    display: block;
}

.discord-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    backdrop-filter: blur(5px);
    transition: 0.3s ease;
    cursor: pointer;
}

.discord-card:hover {
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(88, 101, 242, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.15);
}


.discord-top-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: #5865F2;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
}


.discord-inner-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.discord-header-img {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

#discord-pfp {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid #141414;
    background-color: #747f8d;
}


.status-online {
    background-color: #3ba55c;
    box-shadow: 0 0 10px #3ba55c;
}

.status-idle {
    background-color: #faa61a;
    box-shadow: 0 0 10px #faa61a;
}

.status-dnd {
    background-color: #ed4245;
    box-shadow: 0 0 10px #ed4245;
}

.status-offline {
    background-color: #747f8d;
}

.discord-info {
    overflow: hidden;
}

.discord-info h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.discord-info p {
    font-size: 0.85rem;
    color: #bbb;
    margin: 0 !important;
    font-family: 'JetBrains Mono', monospace;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.red-dots-header {
    height: 120px;
    width: 100%;
    background-image:
        radial-gradient(rgba(217, 35, 35, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, #050505 0%, rgba(50, 5, 5, 0.6) 50%, #050505 100%);
    background-size: 8px 8px, 100% 100%;
    border-bottom: 1px solid rgba(217, 35, 35, 0.15);
}

.lynx-auth-btn {
    color: #ff6666;
    border-color: rgba(217, 35, 35, 0.3);
}

.lynx-auth-btn:hover {
    background: rgba(217, 35, 35, 0.1);
    border-color: #ff3333;
    color: #fff;
    box-shadow: 0 0 15px rgba(217, 35, 35, 0.2);
}


.badge-opensource {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ffcc00, #ff9900);
    color: #000;
    font-weight: 800;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 10px;
    z-index: 5;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.4);
}


.icon-white {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.icon-green {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}


.badge-opensource~.card-content .feature-list .f-item i {
    color: #ffcc00;
}



.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
    color: #fff;
    width: 100%;
}


.timeline-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: rgba(217, 35, 35, 0.3);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    opacity: 0;
    transform-style: preserve-3d;
    transform: perspective(1000px) translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    cursor: pointer;
}

.timeline-item:nth-child(1) {
    animation-delay: 0.1s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.3s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.5s;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--accent-red);
    border: 4px solid var(--bg-color);
    top: 20px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 15px rgba(217, 35, 35, 0.8);
    transform: translateZ(50px);
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background: rgba(20, 20, 25, 0.4);
    position: relative;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.timeline-item:hover .timeline-content {
    border-color: rgba(217, 35, 35, 0.5);
    box-shadow: 0 15px 40px rgba(217, 35, 35, 0.2), inset 0 0 20px rgba(217, 35, 35, 0.05);
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.timeline-date {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(217, 35, 35, 0.2);
    color: #ff6666;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.timeline-content p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.5;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item:nth-child(even) {
        left: 0%;
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 21px;
    }
}


.hobbies-goals-container {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 80px auto 40px auto;
    padding: 0 20px;
}

.hobbies-section {
    flex: 1.5;
}

.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.hobby-card {
    background: rgba(15, 15, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s ease;
    cursor: default;
}

.hobby-card:hover {
    transform: translateY(-8px);
    background: rgba(25, 25, 30, 0.9);
    border-color: rgba(217, 35, 35, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), inset 0 2px 0 rgba(217, 35, 35, 0.5);
}

.hobby-card i {
    font-size: 2.5rem;
    color: #5887ff;
    margin-bottom: 15px;
    transition: 0.3s ease;
}

.hobby-card:hover i {
    color: var(--accent-red);
    transform: scale(1.1);
}

.hobby-card h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.hobby-card p {
    color: #777;
    font-size: 0.85rem;
    line-height: 1.5;
}

.goals-section {
    flex: 1;
}

.goals-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.goal-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(15, 15, 20, 0.5);
    padding: 20px;
    border-radius: 12px;
    border-left: 3px solid transparent;
    transition: 0.3s ease;
}

.goal-item:hover {
    background: rgba(25, 25, 30, 0.8);
    transform: translateX(10px);
}

.goal-item:has(.completed) {
    border-left-color: #00ff88;
}

.goal-item:has(.pending) {
    border-left-color: #ffb700;
}

.goal-item i {
    font-size: 1.4rem;
    margin-top: 3px;
}

.goal-item .completed {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
}

.goal-item .pending {
    color: #ffb700;
    text-shadow: 0 0 10px rgba(255, 183, 0, 0.4);
}

.goal-text h3 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.goal-text p {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.4;
}


.lynx-chat-container {
    margin-top: 40px;
    background: rgba(15, 15, 20, 0.6);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(88, 101, 242, 0.05);
    backdrop-filter: blur(10px);
}

.chat-header {
    background: rgba(10, 10, 15, 0.8);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #5865F2, #3ec5ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.5);
}

.chat-avatar i {
    color: #fff;
    font-size: 1.2rem;
}

.online-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #00ff88;
    border-radius: 50%;
    border: 2px solid #111;
    box-shadow: 0 0 10px #00ff88;
}

.chat-titles h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 2px;
    font-weight: 700;
}


.project-description-text {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.5;
    margin-bottom: 5px;
    text-align: left;
    font-family: 'Inter', sans-serif;
}


.skills-issues-section {
    margin-top: 40px;
    width: 100%;
}

.skills-header-3d {
    margin-bottom: 30px;
    perspective: 1000px;
}

.skills-title-3d {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.skills-title-3d::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--accent-red);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
    transform: translateZ(10px);
    opacity: 0.8;
}

.skills-title-3d:hover {
    transform: rotateX(10deg) rotateY(-10deg) scale(1.05);
    text-shadow:
        0 0 10px rgba(217, 35, 35, 0.5),
        -5px 5px 0px rgba(217, 35, 35, 0.3);
}

.skills-grid-creative {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.skill-creative-card {
    background: rgba(15, 15, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.skill-creative-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-red);
    box-shadow: 0 10px 30px rgba(217, 35, 35, 0.15);
}

.skill-card-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.skill-creative-card:hover .skill-card-img {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(217, 35, 35, 0.3);
}

.skill-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.skill-card-info {
    width: 100%;
    text-align: center;
}

.skill-card-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
}

.skill-progress-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    position: relative;
    margin-top: 10px;
}

.skill-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-red), #ff4d4d);
    border-radius: 10px;
    box-shadow: 0 0 10px var(--accent-red);
}

.skill-progress-container span {
    position: absolute;
    right: 0;
    top: -20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #888;
}

.skill-card-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(217, 35, 35, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Floating AI Chat */
.floating-chat-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
}

.chat-toggle-trigger {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-red), #990000);
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(217, 35, 35, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-toggle-trigger:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(217, 35, 35, 0.6);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-red);
    animation: pulseChat 2s infinite;
}

@keyframes pulseChat {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.lynx-chat-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: #0d0d0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 20px rgba(217, 35, 35, 0.1);
    transform-origin: bottom right;
    animation: popupFade 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.lynx-chat-popup.active {
    display: flex;
}

@keyframes popupFade {
    from {
        opacity: 0;
        transform: scale(0.5) translateY(50px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.lynx-chat-popup .chat-header {
    background: rgba(20, 20, 25, 0.8);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.close-chat {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    margin-left: auto;
    font-size: 1.2rem;
    transition: 0.3s;
}

.close-chat:hover {
    color: #fff;
}

.lynx-chat-popup .chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.lynx-chat-popup .chat-messages::-webkit-scrollbar {
    display: none;
}

.lynx-chat-popup .chat-input-area {
    padding: 15px 20px;
    background: rgba(15, 15, 18, 0.9);
    display: flex;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media(max-width: 480px) {
    .lynx-chat-popup {
        width: calc(100vw - 40px);
        right: -10px;
    }
}

/* Common Chat Elements (Re-styled for Popup) */
.chat-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.chat-avatar i {
    color: #fff;
    font-size: 1.2rem;
}

.online-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #00ff88;
    border-radius: 50%;
    border: 2px solid #0d0d0f;
}

.chat-titles h3 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.chat-titles span {
    font-size: 0.75rem;
    color: #00ff88;
}

.chat-message .msg-bubble {
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.chat-message.bot .msg-bubble {
    background: rgba(255, 255, 255, 0.05);
    color: #ddd;
    border-bottom-left-radius: 2px;
}

.chat-message.user .msg-bubble {
    background: var(--accent-red);
    color: #fff;
    border-bottom-right-radius: 2px;
    box-shadow: 0 4px 10px rgba(217, 35, 35, 0.2);
}

.chat-message.user {
    align-self: flex-end;
}

.chat-message.bot {
    align-self: flex-start;
}

#chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 15px;
    border-radius: 12px;
    color: #fff;
    outline: none;
}

#chat-send {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--accent-red);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

#chat-send:hover {
    transform: scale(1.05);
    background: #990000;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 4px 0;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: #aaa;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}


.timeline-left::after {
    left: 10px;
}

.timeline-left .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
    left: 0 !important;
}

.timeline-left .timeline-item .timeline-dot {
    left: 0px !important;
    right: auto;
}

@media screen and (max-width: 900px) {
    .hobbies-goals-container {
        flex-direction: column;
    }
}

.aura-diary-section {
    padding: 100px 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
    background: radial-gradient(circle at center, rgba(60, 30, 20, 0.1) 0%, transparent 70%);
}

.diary-container {
    width: 100%;
    max-width: 800px;
    perspective: 1000px;
}

.diary-paper {
    background: #f4ecd8;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.02) 0%, transparent 100%),
        url("https://www.transparenttextures.com/patterns/pinstriped-suit.png");
    border-radius: 4px;
    padding: 40px;
    box-shadow:
        10px 10px 40px rgba(0, 0, 0, 0.7),
        inset 0 0 100px rgba(139, 69, 19, 0.1),
        inset 0 0 20px rgba(139, 69, 19, 0.2);
    position: relative;
    border-left: 20px solid #5d4037;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.diary-paper::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(225deg, rgba(0, 0, 0, 0.1) 45%, rgba(0, 0, 0, 0.05) 50%, transparent 55%);
    pointer-events: none;
}

.diary-header {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 2px solid rgba(93, 64, 55, 0.2);
    padding-bottom: 20px;
    margin-bottom: 30px;
    color: #5d4037;
}

.diary-header i {
    font-size: 1.8rem;
    color: #8d6e63;
}

.diary-header h3 {
    font-family: "JetBrains Mono", monospace;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 1.5rem;
}

.diary-date {
    margin-left: auto;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.9rem;
    opacity: 0.7;
}

.diary-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.thought-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thought-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.8rem;
    font-weight: 800;
    color: #a1887f;
    letter-spacing: 1px;
}

.thought-text {
    font-family: "Inter", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #3e2723;
    min-height: 1.6em;
    position: relative;
    transition: all 0.5s ease;
}

.diary-footer {
    padding-top: 30px;
    display: flex;
    justify-content: flex-end;
}

.leather-strap {
    width: 60px;
    height: 15px;
    background: #4e342e;
    border-radius: 4px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    position: relative;
}

.leather-strap::after {
    content: "";
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #d4af37;
    border-radius: 50%;
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.text-changing {
    animation: textFade 0.5s ease-in-out;
}

@keyframes textFade {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        opacity: 0;
        transform: translateY(-10px);
    }

    51% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width: 600px) {
    .diary-paper {
        padding: 25px;
    }

    .thought-text {
        font-size: 1.1rem;
    }
}

.creative-why-us {
    padding: 100px 20px;
    background: radial-gradient(circle at center, rgba(217, 35, 35, 0.05) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-us-content {
    flex: 1;
}

.why-us-heading {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
}

.why-us-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 550px;
}

.why-us-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.perspective-box {
    position: relative;
    transform: rotateY(-15deg) rotateX(10deg);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.perspective-box:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.animated-perspective-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: floatingPerspective 6s ease-in-out infinite;
}

@keyframes floatingPerspective {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.glow-effect {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(217, 35, 35, 0.2) 0%, transparent 70%);
    filter: blur(30px);
    z-index: -1;
}

.google-reviews-section {
    padding: 80px 20px;
    background: #080808;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 50px;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 50px;
    margin-top: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.google-badge i {
    color: #4285F4;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.google-review-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    color: #333333;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.google-review-card:hover {
    transform: translateY(-8px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-pfp {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: #f0f0f0;
}

.review-meta {
    display: flex;
    flex-direction: column;
}

.review-author {
    font-weight: 700;
    font-size: 1.1rem;
    color: #111;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars i {
    font-size: 0.8rem;
    color: #e0e0e0;
}

.review-stars i.active {
    color: #fbbc05;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    font-family: 'Inter', sans-serif;
}

.google-logo-mini {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.6;
    font-size: 0.75rem;
    font-weight: 600;
}

.google-logo-mini i {
    color: #4285F4;
}

@media(max-width: 900px) {
    .why-us-container {
        flex-direction: column;
        text-align: center;
    }

    .why-us-heading {
        font-size: 2.5rem;
    }

    .why-us-description {
        margin: 0 auto;
    }
}

.games-library-root {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.library-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 60px;
    color: var(--text-gray);
    font-family: 'JetBrains Mono', monospace;
}

.fav-game-card {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}

.fav-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-red);
    padding: 6px 15px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 0.7rem;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 0 15px rgba(217, 35, 35, 0.4);
}

.fav-game-visual {
    flex: 0 0 50%;
    position: relative;
    height: 350px;
}

.fav-game-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.fav-game-card:hover .fav-game-visual img {
    transform: scale(1.05);
}

.fav-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(6, 6, 6, 0.8) 100%);
}

.fav-game-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.fav-game-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
}

.fav-game-info p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.fav-stats {
    display: flex;
    gap: 20px;
}

.fav-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
}

.fav-stat i {
    color: var(--accent-red);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.game-item-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.game-item-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.game-cover {
    height: 160px;
    position: relative;
    overflow: hidden;
}

.game-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-item-card:hover .game-cover img {
    transform: scale(1.1);
}

.game-status-tag {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-red);
}

.game-details {
    padding: 15px;
}

.game-details h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.game-playtime {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-gray);
}

@media(max-width: 800px) {
    .fav-game-card {
        flex-direction: column;
    }

    .fav-game-visual {
        height: 250px;
        flex: none;
    }

    .fav-overlay {
        background: linear-gradient(0deg, rgba(6, 6, 6, 0.9) 0%, transparent 100%);
    }

    .fav-game-info {
        padding: 30px;
    }
}


.click-ripple {
    position: fixed;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 1px solid var(--accent-red);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: rippleEffect 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    z-index: 10000;
}

.click-ripple::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(217, 35, 35, 0.3);
    border-radius: 50%;
    animation: rippleEffectInner 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes rippleEffect {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
        border-width: 4px;
    }

    100% {
        width: 80px;
        height: 80px;
        opacity: 0;
        border-width: 1px;
    }
}

@keyframes rippleEffectInner {
    0% {
        opacity: 0.5;
        transform: scale(0);
    }

    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

.music-controls-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
}

.music-pill {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.music-pill:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    box-shadow: 0 0 20px rgba(217, 35, 35, 0.3);
}

.volume-slider-wrapper {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateX(-20px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.music-controls-container:hover .volume-slider-wrapper {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

#volume-control {
    width: 80px;
    accent-color: var(--accent-red);
}

.live-views-section {
    display: flex;
    justify-content: center;
    padding: 40px 20px 20px;
}

.live-views-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(14, 14, 18, 0.85);
    border: 1px solid rgba(217, 35, 35, 0.2);
    border-radius: 16px;
    padding: 20px 35px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(217, 35, 35, 0.05);
    transition: all 0.4s ease;
}

.live-views-card:hover {
    border-color: rgba(217, 35, 35, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(217, 35, 35, 0.15);
    transform: translateY(-3px);
}

.live-views-pulse {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(217, 35, 35, 0.06) 0%, transparent 70%);
    pointer-events: none;
    animation: viewsPulse 4s ease-in-out infinite;
}

@keyframes viewsPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.live-views-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(217, 35, 35, 0.15), rgba(217, 35, 35, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(217, 35, 35, 0.2);
}

.live-views-icon i {
    font-size: 1.3rem;
    color: #ff6666;
    filter: drop-shadow(0 0 8px rgba(217, 35, 35, 0.5));
}

.live-views-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.live-views-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #888;
    font-family: 'JetBrains Mono', monospace;
}

.live-views-count {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    letter-spacing: -1px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(217, 35, 35, 0.1);
    border: 1px solid rgba(217, 35, 35, 0.25);
    padding: 5px 12px;
    border-radius: 20px;
    margin-left: 10px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d92323;
    animation: liveBlink 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(217, 35, 35, 0.6);
}

@keyframes liveBlink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

.live-text {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ff6666;
    font-family: 'JetBrains Mono', monospace;
}

@media (max-width: 600px) {
    .live-views-card {
        flex-wrap: wrap;
        justify-content: center;
        padding: 18px 20px;
        gap: 12px;
    }

    .live-views-info {
        align-items: center;
        text-align: center;
    }

    .live-indicator {
        margin-left: 0;
    }

    .live-views-count {
        font-size: 1.6rem;
    }
}

.community-stats-container {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.stats-glass-card {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(217, 35, 35, 0.2);
    border-radius: 25px;
    padding: 35px 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(217, 35, 35, 0.05);
}

.card-glow-pulse {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(217, 35, 35, 0.08) 0%, transparent 70%);
    animation: rotateGlow 10s linear infinite;
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.stat-block {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

.stat-icon-wrapper {
    width: 55px;
    height: 55px;
    background: rgba(217, 35, 35, 0.1);
    border: 1px solid rgba(217, 35, 35, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    font-size: 1.5rem;
    box-shadow: 0 0 15px rgba(217, 35, 35, 0.2);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    color: #888;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    line-height: 1;
}

.stat-separator {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(217, 35, 35, 0.3), transparent);
}

/* Aura Like Button */
.aura-like-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.aura-like-btn:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 10px 25px rgba(217, 35, 35, 0.4);
}

.aura-like-btn.liked {
    color: #fff;
    background: var(--accent-red);
    animation: heartBeat 0.4s ease;
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1.15);
    }
}

.live-tag {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 0.6rem;
    font-weight: 900;
    color: #00ff88;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 1px;
}

.status-blink {
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .stats-glass-card {
        flex-direction: column;
        padding: 40px;
    }

    .stat-separator {
        width: 100%;
        height: 1px;
    }
}

.services-provided-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.services-creative-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-creative-card {
    background: rgba(15, 15, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 25px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.service-creative-card:hover {
    transform: translateY(-10px);
    border-color: rgba(217, 35, 35, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(217, 35, 35, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(217, 35, 35, 0.1), rgba(217, 35, 35, 0.02));
    border: 1px solid rgba(217, 35, 35, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: #ff4d4d;
    transition: all 0.4s ease;
    box-shadow: inset 0 0 20px rgba(217, 35, 35, 0.05);
}

.service-creative-card:hover .service-icon {
    background: #d92323;
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 25px rgba(217, 35, 35, 0.5);
}

.service-creative-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.service-creative-card:hover h3 {
    color: #ff4d4d;
}

.service-creative-card p {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.service-creative-card:hover p {
    color: #ccc;
}

.service-glow {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(217, 35, 35, 0.4) 0%, transparent 70%);
    filter: blur(20px);
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
}

.service-creative-card:hover .service-glow {
    opacity: 1;
    bottom: -20px;
    width: 150px;
    height: 150px;
}
