/*aymeric was here :D */

body {
    font-family: Arial, sans-serif;
    background-color: #1e1e1e;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    flex-direction: column;
    height: 100%;
    display: flex;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

html {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

a{
    text-decoration: none;
}

.cyber-footer {
    flex-shrink: 0;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #222, #333);
    padding: 15px 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    width: 40px;
    height: auto;
    margin-right: 10px;
    animation: spin 1s infinite;
    animation-play-state: running;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #0583F2;
    letter-spacing: 3px;
    margin-left: .5em;
    transition: transform 0.3s ease-in-out;
}

.logo:hover {
    transform: scale(1.1);
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
    position: relative;
}

nav ul li i {
    margin-right: 8px;
    background: linear-gradient(45deg,
    #38ABF2 0%,
    #0583F2 25%,
    #38ABF2 50%,
    #38ABF2 75%,
    #0583F2 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientFlow 2s ease infinite;
    text-shadow: 0 0 20px rgba(56, 171, 242, 0.3);
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 12px 20px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    display: block;
}

nav ul li a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(56, 171, 242, 0.8) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.4);
    z-index: -1;
    pointer-events: none;
}

nav ul li a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
    transparent 0%,
    rgba(56, 171, 242, 0.2) 50%,
    transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

nav ul li a:hover {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(56, 171, 242, 0.8);
    box-shadow: 0 0 20px rgba(56, 171, 242, 0.4);
}

nav ul li a:hover::before {
    width: 300px;
    height: 300px;
    opacity: 0.6;
    filter: blur(15px);
}

nav ul li a:hover::after {
    transform: translateX(100%);
}

nav ul li a::after {
    content: "";
    display: block;
    height: 2px;
    width: 0;
    background: #38ABF2;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease-in-out;
}

nav ul li a:hover::after {
    width: 100%;
}

.page {
    display: none;
    margin: 20px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.page.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.feature {
    position: relative;
    margin: 20px auto;
    width: 70%;
    background: rgba(40, 40, 40, 0.7);
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(56, 171, 242, 0.3);
}

.feature::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(56, 171, 242, 0.144) 10%, transparent 80%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.4);
    z-index: -1;
    pointer-events: none;
}

.feature-content::-webkit-scrollbar {
    width: 8px;
}

.feature-content::-webkit-scrollbar-thumb {
    background-color: rgba(56, 171, 242, 0.2);
    border-radius: 4px;
}

.feature-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: scaleY(0.95);
    transition: all 0.3s ease;
    padding: 0;
}

.feature-content.show {
    max-height: 1000px;
    opacity: 1;
    transform: scaleY(1);
    padding: 10px 0;
}


.feature:hover::before {
    width: 300px;
    height: 300px;
    opacity: 0.4;
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(56, 171, 242, 0.3);
    border-color: rgba(56, 171, 242, 0.6);
}

h1 {
    font-size: 3rem;
}

.feature h2 {
    margin: 0;
    margin-bottom: 0;
    padding-bottom: 0.5em;
    padding: 18px;
    background: linear-gradient(90deg, rgba(30, 30, 30, 0.8), rgba(50, 50, 50, 0.8));
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    color: #fff;
    font-size: 1.3em;
    text-shadow: 0 0 8px rgba(56, 171, 242, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature h2::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.feature.active h2::after {
    transform: rotate(45deg);
}

.feature-content {
    max-height: 0 !important;
    opacity: 0 !important;
    transform: scaleY(0) !important;
    transition: all 0.4s ease;
    overflow: hidden;
    padding: 0;
    border-top: none;
    display: grid;
}

.feature-content.show {
    max-height: 400px !important; /* or adjust as needed */
    opacity: 1 !important;
    transform: scaleY(1) !important;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
}

.feature-content ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    width: 100%;
    box-sizing: border-box;
}

.feature-content ul li {
    background-color: rgba(40, 50, 60, 0.6);
    padding: 16px 20px;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
    color: white;
    transition: transform 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    font-size: 1.05rem;
}

.feature-content ul li:hover {
    transform: scale(1.02);
    z-index: 1;
}




@media (max-width: 1024px) {
    .feature-content ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .feature-content ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .feature-content ul {
        grid-template-columns: 1fr;
    }
}


.feature-content.show li {
    transform: translateX(0);
    opacity: 1;
}

.feature.active {
    background: rgba(40, 40, 40, 0.9);
    box-shadow: 0 0 25px rgba(56, 171, 242, 0.4);
}

.feature.active::before {
    opacity: 0.6;
}

@media (max-width: 768px) {
    .feature-content {
        max-height: 70vh;
        overflow-y: auto;
        padding-right: 6px; /* makes room for scrollbar */
    }

    .feature-content::-webkit-scrollbar {
        width: 6px;
    }

    .feature-content::-webkit-scrollbar-thumb {
        background: #38ABF2;
        border-radius: 4px;
    }
}

/* PRICING SECTION STYLES */

.pricing-card {
    background: rgba(30, 30, 30, 0.9);
    border: 1px solid rgba(56, 171, 242, 0.2);
    border-radius: 12px;
    padding: 40px 30px;
    max-width: 500px;
    margin: 30px auto;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 20px rgba(56, 171, 242, 0.2);
    animation: fadeInPricing 0.8s ease-out;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 14px;
    background: conic-gradient(
            from 0deg,
            transparent 0%,
            #38ABF2 25%,
            #0583F2 50%,
            #38ABF2 75%,
            transparent 100%
    );
    filter: blur(6px);
    animation: borderCircuit 6s linear infinite;
    z-index: 0;
    pointer-events: none;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    padding: 2px;
}

.pricing-intro {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #cfd8e0;
    text-shadow: 0 0 5px rgba(56, 171, 242, 0.1);
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-list li {
    font-size: 1.2rem;
    margin: 10px 0;
    background: rgba(56, 171, 242, 0.05);
    padding: 12px 20px;
    border: 1px solid rgba(56, 171, 242, 0.2);
    border-radius: 6px;
    color: #b7c9d3;
    animation: slideIn 0.5s ease-out forwards;
}

.price-tag {
    color: #38ABF2;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(56, 171, 242, 0.5);
}

@keyframes fadeInPricing {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


ul {
    list-style: none;
    padding: 0;
}

ul li {
    font-size: 18px;
    margin: 5px 0;
    transition: transform 0.2s, color 0.2s;
}

ul li:hover {
    transform: scale(1.05);
    color: #38ABF2;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1e1e1e;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

body:not(.loaded) {
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.loaded {
    opacity: 1;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(30, 30, 30, 0.9);
}

::-webkit-scrollbar-thumb {
    background: #38ABF2;
    border-radius: 3px;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #38ABF2 rgba(30, 30, 30, 0.8);
}

nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(90deg, #222, #333);
    padding: 10px 15px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.logo-container img {
    width: 30px;
    height: auto;
    margin-right: 8px;
    animation: spin 1s infinite;
    animation-play-state: running;
}

.logo {
    font-size: 18px;
    color: #0583F2;
    letter-spacing: 1px;
    margin-left: 0.3em;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 5px;
}

nav ul li a {
    font-size: 14px;
    padding: 8px 12px;
}

.page {
    display: none;
    margin: 10px;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.page.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.feature {
    width: 90%;
    margin: 15px auto;
    padding: 3px;
}

.feature h2 {
    padding: 12px;
    font-size: 1.1em;
}

.feature-content {
    padding: 0 10px;
}

.feature-content ul {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 25px;
    }

    .logo-container {
        margin-bottom: 0;
    }

    .logo {
        font-size: 20px;
    }

    nav ul li {
        margin: 0 10px;
    }

    nav ul li a {
        font-size: 16px;
        padding: 10px 16px;
    }

    ::-webkit-scrollbar {
        width: 10px;
        height: 10px;
    }

    ::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #0583F2, #38ABF2);
        border-radius: 5px;
    }

    .feature {
        width: 80%;
    }

    .feature-content ul {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (min-width: 1024px) {
    .logo-container img {
        width: 40px;
    }

    .logo {
        font-size: 24px;
    }

    nav ul li a {
        font-size: 18px;
        padding: 12px 20px;
    }

    ::-webkit-scrollbar {
        width: 12px;
        height: 12px;
    }

    ::-webkit-scrollbar-track {
        border-radius: 10px;
        border: 1px solid rgba(56, 171, 242, 0.2);
    }

    ::-webkit-scrollbar-thumb {
        border-radius: 10px;
        border: 2px solid rgba(30, 30, 30, 0.8);
        box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    }

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #38ABF2, #0583F2);
        box-shadow: 0 0 10px rgba(56, 171, 242, 0.5);
    }

    ::-webkit-scrollbar-thumb::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg,
        transparent 0%,
        rgba(56, 171, 242, 0.3) 50%,
        transparent 100%);
        border-radius: 10px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    ::-webkit-scrollbar-thumb:hover::after {
        opacity: 1;
        animation: scrollbarGlow 1.5s infinite;
    }

    .feature {
        width: 70%;
    }

    .logo:hover {
        transform: scale(1.1);
    }

    nav ul li a:hover {
        transform: scale(1.1);
        text-shadow: 0 0 15px rgba(56, 171, 242, 0.8);
    }

    .feature:hover {
        transform: translateY(-3px);
    }
}

@media (pointer: coarse) {
    nav ul li a {
        padding: 12px 16px;
    }

    .feature {
        padding: 8px;
    }

    .feature h2 {
        padding: 16px;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes scrollbarGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes slideIn {
    from { transform: translateX(-10px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@media (hover: hover) {
    nav ul li a:hover::before {
        width: 300px;
        height: 300px;
        opacity: 0.6;
    }

    ul li:hover {
        transform: scale(1.05);
        color: #38ABF2;
    }
}

.cyber-footer {
    background: linear-gradient(180deg, rgba(10, 10, 20, 0) 0%, rgba(10, 10, 20, 0.9) 20%);
    color: #fff;
    padding: 40px 20px 20px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 4em;
}


.cyber-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #38ABF2, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-heading {
    color: #38ABF2;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s, text-shadow 0.3s;
}

.footer-links a:hover {
    color: #38ABF2;
    text-shadow: 0 0 8px rgba(56, 171, 242, 0.5);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 4px;
    border-radius: 50%;
    transition: transform 0.3s, filter 0.3s;
}

.centered-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.centered-icons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 15px;
}

.footer-social svg {
    width: 32px;
    height: 32px;
    transition: transform 0.3s, filter 0.3s;
    fill: #38ABF2;
}

.footer-social svg:hover {
    transform: translateY(-3px) scale(1.1);
    filter: drop-shadow(0 0 5px #38abf232);
}


.social-icon svg {
    width: 100%;
    height: 100%;
    fill: #38ABF2;
}


.social-icon:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 0 5px #38ABF2);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(56, 171, 242, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.gradient-heading {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.gradient-text {
    background: linear-gradient(45deg,
    #38ABF2 0%,
    #0583F2 25%,
    #38ABF2 50%,
    #38ABF2 75%,
    #0583F2 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientFlow 10s ease infinite;
    text-shadow: 0 0 20px rgba(56, 171, 242, 0.3);
    font-weight: bold;
    letter-spacing: 1px;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-heading::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #38ABF2, #1184cb);
    margin: 10px auto;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(56, 171, 242, 0.5);
}

#home {
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* For QHD (1440p), 4K, ultrawide, move everything further down */
@media (min-width: 1600px) {
    #home {
        padding-top: 140px;
        padding-bottom: 80px;
    }
}
@media (min-width: 2000px) {
    #home {
        padding-top: 190px;
        padding-bottom: 110px;
    }
}

.youtube-embed {
    margin: 50px auto;
    max-width: 800px;
    height: 400px;
    position: relative;
    border: 2px solid #38ABF2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(56, 171, 242, 0.3),
    inset 0 0 15px rgba(56, 171, 242, 0.2);
}

.youtube-embed::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
    transparent 48%,
    rgba(56, 171, 242, 0.1) 50%,
    transparent 52%);
    background-size: 5px 5px;
    pointer-events: none;
    z-index: 1;
}

.youtube-embed iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    height: 400px;
}

@media (max-width: 768px) {
    .youtube-embed {
        margin: 10px 10px;
        border-width: 1px;
    }
}

#get-now-btn {
    margin-bottom: 32px;
}

@media (min-width: 1600px) {
    #get-now-btn {
        margin-top: 60px;
        margin-bottom: 70px;
    }
}
@media (min-width: 2000px) {
    #get-now-btn {
        margin-top: 20px;
        margin-bottom: 140px;
    }
}


/* LEGAL PAGE ENHANCEMENTS */

.user-info-card {
    background: rgba(30, 30, 30, 0.9);
    border: 1px solid rgba(56, 171, 242, 0.2);
    border-left: 4px solid #38ABF2;
    box-shadow: 0 0 20px rgba(56, 171, 242, 0.15), inset 0 0 8px rgba(56, 171, 242, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 10px;
    max-width: 800px;
    margin: 30px auto;
    padding: 30px;
    text-align: left;
    animation: fadeInLegal 0.8s ease-out;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1.05rem;
}

.user-info-card p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #cfd8e0;
    text-shadow: 0 0 4px rgba(56, 171, 242, 0.2);
}

.user-info-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.user-info-card ul li {
    position: relative;
    padding-left: 24px;
    margin: 10px 0;
    color: #b7c9d3;
    font-size: 1rem;
    line-height: 1.5;
    animation: fadeSlideIn 0.6s ease forwards;
}

.user-info-card ul li::before {
    content: "★";
    position: absolute;
    left: 0;
    top: 0;
    color: #38ABF2;
    font-size: 1rem;
    text-shadow: 0 0 6px rgba(56, 171, 242, 0.4);
}

/* Animations */
@keyframes fadeInLegal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.user-info-card strong {
    color: #38ABF2;
    text-shadow: 0 0 5px rgba(56, 171, 242, 0.4);
}

.dashboard-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 30px;
    animation: fadeInScale 1s ease 0.2s forwards;
}

.dashboard-btn {
    background: linear-gradient(90deg, #0583F2, #38ABF2);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(56, 171, 242, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    margin: 12px;
}

.dashboard-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(56, 171, 242, 0.8);
}

.cape-status {
    font-weight: bold;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.2);
}

.cape-beta {
    background: linear-gradient(90deg, #f23838, #7ff238);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 5s ease infinite;
    text-shadow: 0 0 8px rgba(56, 171, 242, 0.5);
}

.cape-dev {
    color: #FF5555;
    text-shadow: 0 0 10px rgba(255, 85, 85, 0.9), 0 0 20px rgba(255, 0, 0, 0.6);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


.login-card {
    position: relative;
    background: rgba(30, 30, 30, 0.85);
    border: 1px solid rgba(56, 171, 242, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    max-width: 400px;
    margin: 20px auto;
    padding: 25px 30px;
    text-align: left;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    overflow: hidden;
    box-shadow: 0 0 25px rgba(56, 171, 242, 0.2);
}

.login-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: conic-gradient(
            from 0deg,
            transparent 0%,
            #38ABF2 25%,
            #0583F2 50%,
            #38ABF2 75%,
            transparent 100%
    );
    border-radius: 14px;
    background-size: 300% 300%;
    animation: borderCircuit 3s linear infinite;
    filter: blur(4px) drop-shadow(0 0 10px #38ABF2);
    z-index: 0;
    pointer-events: none;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    padding: 2px;
}

.login-card::after {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border-radius: 16px;
    background: radial-gradient(circle, rgba(56, 171, 242, 0.15), transparent 60%);
    animation: flickerGlow 1.5s infinite alternate ease-in-out;
    pointer-events: none;
    z-index: 0;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
    position: relative;
}

.login-form label {
    font-size: 16px;
    color: #38ABF2;
    text-align: left;
    margin-bottom: -15px;
}

.login-form input {
    padding: 12px 15px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    transition: box-shadow 0.3s ease;
}

.login-btn {
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(90deg, #0583F2, #38ABF2);
    color: white;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(56, 171, 242, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(56, 171, 242, 0.8);
}

.forgot-link {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.forgot-link a {
    color: #38ABF2;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s;
}

.forgot-link a:hover {
    text-shadow: 0 0 8px rgba(56, 171, 242, 0.5);
}

@keyframes borderCircuit {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 300% 50%;
    }
}

@keyframes flickerGlow {
    0% {
        opacity: 1;
        transform: scale(1);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
        filter: blur(4px);
    }
}

.changelog-card {
    background: rgba(30, 30, 30, 0.85);
    border: 1px solid rgba(56, 171, 242, 0.3);
    box-shadow: 0 0 25px rgba(56, 171, 242, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    max-width: 600px;
    margin: 30px auto;
    padding: 30px;
    animation: fadeInScale 1s ease;
    position: relative;
}

.changelog-subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.75);
    text-shadow: 0 0 4px rgba(56, 171, 242, 0.2);
}

.changelog-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}

.changelog-list li {
    background: rgba(56, 171, 242, 0.08);
    padding: 12px 16px;
    border-left: 3px solid #38ABF2;
    border-radius: 6px;
    box-shadow: inset 0 0 10px rgba(56, 171, 242, 0.1);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    animation: slideInUp 0.5s ease forwards;
    opacity: 0;
}

.changelog-list li:nth-child(1) { animation-delay: 0.1s; }
.changelog-list li:nth-child(2) { animation-delay: 0.2s; }
.changelog-list li:nth-child(3) { animation-delay: 0.3s; }

.version-tag {
    background: linear-gradient(90deg, #38ABF2, #0583F2);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9em;
    margin-right: 10px;
    color: #fff;
    text-shadow: 0 0 5px rgba(56, 171, 242, 0.6);
}

@keyframes slideInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.changelog-container {
    max-width: 700px;
    margin: 30px auto;
    padding: 20px;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(56, 171, 242, 0.15);
    border: 1px solid rgba(56, 171, 242, 0.25);
    animation: fadeInScale 1s ease;
}

.changelog-entry {
    margin-bottom: 30px;
    text-align: left;
    animation: slideInUp 0.5s ease forwards;
    opacity: 0;
    border-left: 4px solid #38ABF2;
    padding-left: 15px;
    position: relative;
}

.changelog-entry:nth-child(1) { animation-delay: 0.1s; }
.changelog-entry:nth-child(2) { animation-delay: 0.2s; }
.changelog-entry:nth-child(3) { animation-delay: 0.3s; }
.changelog-entry:nth-child(4) { animation-delay: 0.4s; }
.changelog-entry:nth-child(5) { animation-delay: 0.5s; }
.changelog-entry:nth-child(6) { animation-delay: 0.6s; }

.changelog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.version-tag {
    background: linear-gradient(90deg, #38ABF2, #0583F2);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1rem;
    color: #fff;
    text-shadow: 0 0 5px rgba(56, 171, 242, 0.6);
    box-shadow: 0 0 10px rgba(56, 171, 242, 0.2);
}

.changelog-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-style: italic;
    text-shadow: 0 0 2px rgba(56, 171, 242, 0.3);
}


.changelog-changes {
    list-style: disc;
    list-style: none;
    padding-left: 1em;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.85);
}

.changelog-changes li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 6px;
    line-height: 1.4;
    animation: fadeIn 0.4s ease;
}

.changelog-changes li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #38ABF2;
    font-size: 1.1em;
    text-shadow: 0 0 6px rgba(56, 171, 242, 0.4);
}


@keyframes slideInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from { opacity: 0 }
    to { opacity: 1 }
}

.dev-showcase {
    max-width: 1100px;
    margin: 60px auto 40px;
    padding: 20px;
    animation: fadeInScale 1s ease forwards;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
    background: linear-gradient(90deg, #38ABF2, #1c8ed6);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(56, 171, 242, 0.4);
}

.dev-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    justify-items: center;
    width: 100%;
}

@media (max-width: 1200px) {
    .dev-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.dev-card {
    position: relative;
    background: rgba(20, 20, 30, 0.7);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(56, 171, 242, 0.3);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    margin: 0 auto;
    padding: 25px;
    box-shadow: 0 0 25px rgba(56, 171, 242, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;

    flex: 0 1 calc(50% - 30px);

    min-height: 300px;
    min-width: 280px;
    max-width: 370px;
    max-height: 280px;
    width: 100%;
}

.dev-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle, rgba(56, 171, 242, 0.12) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.dev-info, .dev-skin {
    position: relative;
    z-index: 1;
}


.dev-card::after {
    content: "";
    position: absolute;
    top: -6px;
    left: -6px;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    border-radius: 16px;
    background: radial-gradient(circle, rgba(56, 171, 242, 0.1), transparent 60%);
    animation: flickerGlow 1.5s infinite alternate ease-in-out;
    pointer-events: none;
    z-index: 0;
}


.dev-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(56, 171, 242, 0.4);
    border-color: rgba(56, 171, 242, 0.6);
}

.dev-skin img {
    width: 100%;
    image-rendering: pixelated;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.dev-card:hover .dev-skin img {
    transform: scale(1.05);
}

.dev-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dev-info h3 {
    margin: 0 0 10px;
    font-size: 1.4rem;
    color: #38ABF2;
    text-shadow: 0 0 6px rgba(56, 171, 242, 0.4);
}

.dev-info p {
    margin: 0 0 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.dev-skin {
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1em;
    position: relative;
    padding-bottom: 30px;
}

.dev-nametag {
    display: inline-block;
    margin-bottom: 50px;
    padding: 5px 12px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #38ABF2;
}

@media (max-width: 600px) {
    .dev-card {
        flex: 1 1 100%;
        flex-direction: row;
        align-items: center;
        text-align: center;
    }

    .dev-info {
        padding: 20px 15px;
    }

}

.ping-status-box {
    background: rgba(56, 171, 242, 0.05);
    border: 1px solid rgba(56, 171, 242, 0.3);
    box-shadow: inset 0 0 15px rgba(56, 171, 242, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
    animation: fadeInScale 0.8s ease;
}

.ping-label {
    display: block;
    color: #38ABF2;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-shadow: 0 0 6px rgba(56, 171, 242, 0.3);
}

.ping-time {
    font-size: 2rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 0 8px rgba(56, 171, 242, 0.6);
}

.faq-container {
    max-width: 900px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(30, 30, 30, 0.75);
    border: 1px solid rgba(56, 171, 242, 0.25);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(56, 171, 242, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 0 25px rgba(56, 171, 242, 0.3);
}

.faq-question {
    padding: 15px 20px;
    margin: 0;
    font-size: 1.2rem;
    color: #38ABF2;
    background: linear-gradient(90deg, rgba(30, 30, 30, 0.8), rgba(50, 50, 50, 0.8));
    cursor: pointer;
    text-align: left;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    opacity: 0;
    transform: scaleY(0.95);
    transition: all 0.4s ease;
    background: rgba(20, 20, 20, 0.7);
}

.faq-item.open .faq-answer {
    padding: 15px 20px;
    max-height: 500px;
    opacity: 1;
    transform: scaleY(1);
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
}

#cart {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-10px) scaleY(0.95);
    transition: all 0.5s ease;
    margin-top: 20px;
}

#cart.cart-visible {
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0) scaleY(1);
}

.cart-summary {
    background: radial-gradient(circle at center, rgba(30, 30, 50, 0.9), rgba(10, 10, 20, 0.7));
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(56, 171, 242, 0.3);
    box-shadow: 0 0 25px rgba(56, 171, 242, 0.1);
    transition: box-shadow 0.4s ease;
    margin-top: 20px;
}

.cart-title {
    text-align: center;
    font-size: 1.4rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(56, 171, 242, 0.5);
    margin-bottom: 15px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(20, 20, 30, 0.9);
    padding: 12px 15px;
    border-radius: 8px;
    margin: 10px 0;
    border: 1px solid rgba(56, 171, 242, 0.3);
    color: #ffffff;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cart-item:hover {
    background: rgba(56, 171, 242, 0.08);
    transform: scale(1.01);
}

.remove-btn {
    background: none;
    border: none;
    color: #ff6b6b;
    font-weight: bold;
    cursor: pointer;
    font-size: 18px;
}

.qr-box {
    margin-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.8);
}

.qr-box p {
    margin-bottom: 10px;
}

.cart-total-line {
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
    color: #38ABF2;
}

.glow-btn {
    background: #1a8cff;
    box-shadow: 0 0 12px rgba(56, 171, 242, 0.5);
    transition: all 0.3s ease;
    color: white;
    margin: 10px auto;
    display: block;
}

.glow-btn:hover {
    background: #38ABF2;
    box-shadow: 0 0 18px rgba(56, 171, 242, 0.7);
}

.pricing-product {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(20, 20, 30, 0.9);
    border: 1px solid rgba(56, 171, 242, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    margin: 10px 0;
    color: white;
    font-weight: 600;
}

.product-name {
    flex: 1;
}

.product-price {
    width: 60px;
    text-align: right;
    color: #38ABF2;
    margin: 0 16px;
}

.add-button {
    padding: 6px 16px;
    border: none;
    background: linear-gradient(to right, #007bff, #00c6ff);
    border-radius: 6px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(56, 171, 242, 0.5);
    transition: transform 0.2s ease;
}

.add-button:hover {
    transform: scale(1.05);
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background: transparent;
    z-index: -2;
}

.big-glow-btn {
    background: radial-gradient(circle at top left, #38ABF2, #5378F7);
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 20px 60px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(56, 171, 242, 0.7), 0 0 60px rgba(83, 120, 247, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
    margin-top: 3em;
}

.big-glow-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    transition: all 0.5s ease;
    pointer-events: none;
}

.big-glow-btn:hover::after {
    left: 130%;
}

.big-glow-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 30px rgba(56, 171, 242, 0.9), 0 0 80px rgba(83, 120, 247, 0.5);
}

.scroll-down-indicator {
    text-align: center;
    margin-top: 20px;
    font-size: 2rem;
    color: #38ABF2;
    animation: bounce 2s infinite;
}

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

.license-box {
    text-align: center;
    padding: 20px;
    border: 1px solid rgba(56, 171, 242, 0.2);
    background: rgba(20, 20, 30, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(56, 171, 242, 0.2);
}

.license-key-display {
    margin: 20px 0;
    font-size: 1.5rem;
    font-family: 'Courier New', Courier, monospace;
    color: #38ABF2;
    background: rgba(10, 10, 20, 0.6);
    padding: 10px 20px;
    border-radius: 6px;
    border: 1px solid rgba(56, 171, 242, 0.3);
    user-select: all;
}

.discord-connect {
    text-align: center;
    margin: 2em 0 1em 0;
}

.discord-btn {
    display: inline-block;
    background: linear-gradient(90deg, #5865F2, #38ABF2);
    color: #fff;
    font-weight: bold;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1.2em;
    text-decoration: none;
    margin-bottom: 10px;
    box-shadow: 0 0 12px rgba(56,171,242,0.4);
    transition: background 0.2s, transform 0.2s;
}

.discord-btn:hover {
    background: linear-gradient(90deg, #38ABF2, #5865F2);
    transform: translateY(-2px) scale(1.03);
}

.discord-info {
    margin-top: 10px;
    color: #b9c4e5;
    font-size: 1em;
}

.discord-info a {
    color: #38abf2;
    text-decoration: underline;
}

.logout-btn {
    display: inline-block;
    margin-top: 16px;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 22px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
}

.logout-btn:hover {
    background: #38abf2;
    color: #fff;
}

.hero-spacer {
    width: 100%;
    min-height: 800px;
    height: 60vh;
    max-height: 1200px;
}
@media (min-width: 2000px) {
    .hero-spacer {
        min-height: 1050px;
        height: 68vh;
    }
}

.splide{
    height: 12.5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.splide__slide {
    background: linear-gradient(135deg, #1a1a23 80%, #212A33 100%);
    border-radius: 20px;
    border: 2px solid #38ABF2;
    box-shadow:    0 0 16px 2px #38ABF266,   /* Blue outer glow */    0 2px 16px 2px #000B;
    /*Subtlesoftshadowfordepth*/color: #fff;
    padding: 2rem 1.5rem;
    margin: 0 1.5rem;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
    -webkit-transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
    -moz-transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
    -ms-transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
    -o-transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.splide__slide:focus,
.splide__slide:hover {
    border-color: #38ABF2;
    transform: scale(1.004);
    -webkit-transform: scale(1.004);
    -moz-transform: scale(1.004);
    -ms-transform: scale(1.004);
    -o-transform: scale(1.004);
}

.reviewer-name {
    color: #38ABF2;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.2rem;
}
.review-opinion {
    color: #fff;
    font-size: 1.07rem;
    margin-bottom: 0.7rem;
    line-height: 1.5;
}
.review-userid {
    color: #888ea0;
    font-size: 0.92rem;
    margin-top: auto;
    letter-spacing: 0.03em;
}
.splide__track {
    padding: 0 60px !important; /* side padding */
}

.opinions{
    margin-top: 4em;
}
.form-error {
    margin-top: 8px;
    color: #ff6b6b;
    font-size: 0.95rem;
    min-height: 1.2em;
}
.input-error {
    outline: 2px solid #ff6b6b;
    box-shadow: 0 0 8px rgba(255, 107, 107, 0.5);
}