* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: auto;
}

*,
*::before,
*::after {
    max-width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    background: #000000;
    color: #ffffff;
    padding-top: 100px;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

.image-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10000;
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.image-preloader.loaded {
    opacity: 0;
    transform: scale(1.1);
    pointer-events: none;
}

.preloader-image {
    width: 100%;
    height: 100%;
    background: url("img/pc-desktop.jpg") center/cover no-repeat;
    animation: imageReveal 1.5s ease-out forwards;
}

@keyframes imageReveal {
    from {
        opacity: 0;
        transform: scale(1.1);
        filter: blur(20px);
    }
    to {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

.main-content {
    opacity: 0;
    transition: opacity 1s ease-in;
}

.main-content.visible {
    opacity: 1;
}

.snowflake {
    position: fixed;
    top: -10px;
    z-index: 100;
    user-select: none;
    cursor: default;
    animation: snowfall linear forwards;
    pointer-events: none;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes snowfall {
    0% {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
    to {
        opacity: 0;
        transform: translateY(100vh) translateX(var(--drift, 0px));
    }
}

.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
}

.navbar {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    animation: navSlideDown 0.8s ease-out 0.2s both;
}

@keyframes navSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.5) 0%, rgba(20, 20, 35, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    padding: 10px 20px;
    backdrop-filter: blur(50px) saturate(200%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 80px rgba(88, 101, 242, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
}

.nav-container:hover {
    background: linear-gradient(135deg, rgba(45, 45, 60, 0.7) 0%, rgba(35, 35, 50, 0.6) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7), 0 0 60px rgba(255, 255, 255, 0.1);
}

.nav-icon {
    background: rgb(25, 40, 53);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: inset -10px -10px 20px rgba(255, 255, 255, 0.1);
}

.nav-icon:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    transform: rotate(15deg) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.1);
}

.nav-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transform: rotate(180deg);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-icon:hover img {
    transform: rotate(195deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 6px;
    margin: 0;
    padding: 0 8px;
}



.nav-menu li {
    position: relative;
}

.nav-link {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 11px 20px;
    border-radius: 22px;
    display: block;
}

.nav-link:hover {
    transform: translateY(-1px) scale(1.02);
    color: #ffffff;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px) saturate(150%);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.nav-item-dropdown {
    position: static;
}

.nav-item-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 20, 30, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 8px;
    min-width: 200px;
    backdrop-filter: blur(40px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 10000;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.nav-item-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dropdown-item {
    display: block;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    color: #ffffff;
    transform: translateX(6px) scale(1.01);
    border-radius: 8px;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 12px;
}

.download-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    color: #0a0a0a;
    border: none;
    padding: 11px 28px;
    border-radius: 24px;
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .cursor {
        display: none;
    }
    
    .navbar {
        top: 10px;
        left: 10px;
        right: 10px;
        display: flex;
        justify-content: center;
    }
    
    .nav-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
        padding: 8px 12px;
    }
    
    .nav-menu {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 4px;
        padding: 4px 0 0 0;
        margin-top: 4px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .nav-icon {
        width: 38px;
        height: 38px;
    }
    
    .nav-icon img {
        width: 24px;
        height: 24px;
        transform: rotate(180deg);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-icon:hover img {
        transform: rotate(195deg);
    }
    
    .download-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    .nav-container:hover {
        transform: translateY(-2px);
    }
    
    .dropdown-menu {
        position: fixed;
        left: 50%;
        top: auto;
        transform: translateX(-50%);
        min-width: 180px;
    }
    
    .nav-item-dropdown:hover .dropdown-menu {
        transform: translateX(-50%) translateY(0);
    }
    
    .dropdown-arrow {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .nav-link {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .nav-icon {
        width: 36px;
        height: 36px;
    }
    
    .nav-icon img {
        width: 22px;
        height: 22px;
        transform: rotate(180deg);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-icon:hover img {
        transform: rotate(195deg);
    }
    
    .download-btn {
        padding: 7px 16px;
        font-size: 12px;
    }
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("img/pc-desktop.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    margin-top: -100px;
    padding-top: 100px;
}

.hero-content {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .hero-section {
        background-image: url("img/phone.png");
        background-size: cover;
        background-position: center center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        background-image: url("img/phone.png");
        background-size: cover;
        background-position: center center;
    }
}

.services-section {
    background: linear-gradient(180deg, #000000 0%, #0A0812 50%, #000000 100%);
    padding: 140px 20px;
    position: relative;
    overflow: hidden;
}

.gradient-blob {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: min(800px, 90vw);
    height: min(800px, 90vw);
    background: radial-gradient(circle, rgba(88, 101, 242, 0.15) 0%, rgba(138, 43, 226, 0.1) 40%, transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: floatingBlob 8s ease-in-out infinite;
}

@keyframes floatingBlob {
    0%, 100% {
        transform: translateX(-50%) translateY(0) scale(1);
    }
    50% {
        transform: translateX(-50%) translateY(-30px) scale(1.1);
    }
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-title {
    color: #ffffff;
    font-size: 56px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -2px;
    opacity: 0;
    transform: translateY(30px);
}

.services-title.animate {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-description {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
    font-weight: 400;
    opacity: 0;
    transform: translateY(30px);
}

.services-description.animate {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.service-card {
    background: rgba(15, 13, 28, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.4s ease;
    backdrop-filter: blur(30px);
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card.animate:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card.animate:nth-child(2) {
    animation-delay: 0.3s;
}

.service-card.animate:nth-child(3) {
    animation-delay: 0.5s;
}

.service-card:hover {
    transform: translateY(-4px);
    background: rgba(20, 18, 35, 0.6);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.08);
}

.service-card:hover .service-icon svg {
    color: #ffffff;
}

svg {
    display: block;
    flex-shrink: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.floating-cart-icon svg,
.search-btn svg,
.view-btn svg,
.close-modal svg,
.close-cart-modal svg,
.close-checkout-modal svg,
.payment-toggle svg,
.shipping-icon svg,
.confirmation-icon svg,
.empty-cart-icon svg {
    will-change: transform;
    contain: layout style paint;
}

.floating-cart-icon:hover svg,
.search-btn:hover svg,
.view-btn:hover svg,
.close-modal:hover svg,
.close-cart-modal:hover svg,
.close-checkout-modal:hover svg,
.payment-toggle:hover svg {
    transform: translateZ(0) scale(1.05);
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.loading-spinner svg {
    contain: strict;
    isolation: isolate;
}

.dropdown-arrow {
    transition: transform 0.2s ease;
    will-change: transform;
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.floating-cart-icon {
    contain: layout style paint;
    transform: translateZ(0);
}

.view-toggle .view-btn {
    contain: layout style paint;
}

.view-toggle .view-btn svg {
    transition: transform 0.15s ease;
}

.view-toggle .view-btn:hover svg {
    transform: scale(1.1);
}


.close-modal,
.close-cart-modal,
.close-checkout-modal {
    contain: layout style paint;
}


.payment-toggle {
    contain: layout style paint;
}

.payment-toggle svg {
    transition: transform 0.2s ease;
}

.payment-method:hover .payment-toggle svg {
    transform: rotate(180deg);
}


.confirmation-icon {
    contain: layout style paint;
    animation: checkmark-appear 0.6s ease-out;
}

@keyframes checkmark-appear {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(-22.5deg);
        opacity: 0.8;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}


.loading-spinner {
    contain: strict;
    isolation: isolate;
}

.loading-spinner svg circle {
    transform-origin: center;
}


.modal-blocked-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(239, 68, 68, 0.95);
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-blocked-notification.show {
    transform: translateX(0);
}

.modal-blocked-notification .notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.modal-blocked-notification svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .modal-blocked-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        transform: translateY(-100%);
    }
    
    .modal-blocked-notification.show {
        transform: translateY(0);
    }
}

.service-card h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.service-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 20px;
    }
    
    .gradient-blob {
        width: min(600px, 85vw);
        height: min(600px, 85vw);
    }
    
    .services-title {
        font-size: 42px;
    }
    
    .services-description {
        font-size: 16px;
        margin-bottom: 50px;
    }
    
    .services-grid {
        margin-top: 40px;
    }
    
    .service-card {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 60px 15px;
    }
    
    .services-title {
        font-size: 32px;
    }
    
    .services-description {
        font-size: 15px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon svg {
        width: 30px;
        height: 30px;
    }
}

.pricing-section {
    background: linear-gradient(180deg, #000000 0%, #0A0812 50%, #000000 100%);
    padding: 140px 20px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-bg-text {
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: min(380px, 25vw);
    font-weight: 900;
    color: rgb(255, 255, 255);
    letter-spacing: -10px;
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
    user-select: none;
    opacity: 0;
    max-width: 95vw;
    overflow: hidden;
}

.pricing-bg-text.animate {
    animation: fadeIn 1.2s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 80px;
    padding-top: 20px;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.15),
        inset 0 -2px 0 rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: translateY(40px);
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-card.animate {
    animation: slideUpFade 0.8s ease-out forwards;
}

.pricing-card.animate:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-card.animate:nth-child(2) {
    animation-delay: 0.3s;
}

.pricing-card.animate:nth-child(3) {
    animation-delay: 0.5s;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(circle at top center, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: all 1s ease;
    pointer-events: none;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover::after {
    opacity: 1;
    transform: scale(1.2);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: #ffffff;
    padding: 10px 28px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 
        0 4px 20px rgba(59, 130, 246, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.1);
    z-index: 1000;
    animation: badgePulse 2s ease-in-out infinite;
    white-space: nowrap;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes badgePulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 6px 30px rgba(59, 130, 246, 0.6);
    }
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.1) 100%);
    border: 2px solid rgba(59, 130, 246, 0.4);
    box-shadow: 
        0 12px 40px rgba(59, 130, 246, 0.3),
        0 0 60px rgba(59, 130, 246, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    position: relative;
    overflow: visible;
    margin-top: 20px;
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
    z-index: 1;
    border-radius: 24px;
    overflow: hidden;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.pricing-card:hover {
    transform: translateY(-16px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.9),
        0 0 60px rgba(255, 255, 255, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(255, 255, 255, 0.1);
}

.pricing-card.featured:hover {
    transform: translateY(-20px) scale(1.08);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 
        0 35px 90px rgba(59, 130, 246, 0.4),
        0 0 100px rgba(59, 130, 246, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.25),
        inset 0 -2px 0 rgba(255, 255, 255, 0.12);
}

.plan-header {
    margin-bottom: 32px;
}

.plan-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 16px;
}

.pricing-card.featured .plan-label {
    color: rgba(59, 130, 246, 0.9);
    font-weight: 600;
}

.plan-price {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -2px;
    margin: 0;
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pricing-card:hover .plan-price {
    transform: scale(1.08);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.plan-price span {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
}

.plan-features li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 1s ease;
}

.pricing-card:hover .plan-features li {
    color: rgba(255, 255, 255, 0.85);
    transform: translateX(4px);
}

.plan-features li svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 1s ease;
}

.pricing-card:hover .plan-features li svg {
    color: rgba(255, 255, 255, 0.8);
    transform: scale(1.15);
}

.plan-btn {
    width: 100%;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.plan-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 1s ease, height 1s ease;
}

.plan-btn:hover::before {
    width: 300px;
    height: 300px;
}

.plan-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.featured-btn {
    background: #ffffff;
    color: #000000;
    border: none;
}

.featured-btn::before {
    background: rgba(0, 0, 0, 0.05);
}

.featured-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
        margin-top: 20px;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .popular-badge {
        font-size: 11px;
        padding: 6px 20px;
        top: -12px;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 80px 20px;
    }
    
    .pricing-bg-text {
        font-size: min(150px, 20vw);
        letter-spacing: -5px;
        top: 3%;
    }
    
    .pricing-grid {
        margin-top: 60px;
        gap: 40px;
    }
    
    .pricing-card {
        padding: 35px 28px;
    }
    
    .pricing-card.featured {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 60px 15px;
    }
    
    .pricing-bg-text {
        font-size: min(100px, 18vw);
        letter-spacing: -3px;
        top: 2%;
    }
    
    .plan-price {
        font-size: 40px;
    }
    
    .pricing-card {
        padding: 30px 24px;
    }
    
    .popular-badge {
        font-size: 10px;
        padding: 5px 16px;
        top: -10px;
    }
}

.carousel-section {
    background: linear-gradient(180deg, #000000 0%, #0E0C15 50%, #000000 100%);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.carousel-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1000px, 95vw);
    height: min(1000px, 95vw);
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.15);
    }
}

.carousel-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
}

.carousel-title {
    color: #ffffff;
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -2px;
    opacity: 0;
    transform: translateY(30px);
}

.carousel-title.animate {
    animation: fadeInUp 0.8s ease-out forwards;
}

.carousel-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    font-weight: 400;
}

.carousel-subtitle.animate {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.carousel-wrapper {
    max-width: min(1600px, 95vw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    padding: 0 min(120px, 5vw);
    overflow: hidden;
}

.carousel-container {
    flex: 1;
    overflow: visible;
    position: relative;
    margin: 0 auto;
    max-width: min(1200px, 90vw);
}

.carousel-track {
    display: flex;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 32px;
    padding: 0 20px;
}

.carousel-box {
    min-width: min(400px, 80vw);
    height: 420px;
    background: rgba(15, 13, 28, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 48px 40px 36px;
    text-align: left;
    transition: all 0.8s ease;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    position: relative;
    overflow: hidden;
    opacity: 0.4;
    transform: scale(0.92);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
}

.carousel-box.active {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(20, 18, 35, 0.6);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.carousel-box::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.8s ease;
    border-radius: 50%;
    filter: blur(50px);
}

.carousel-box.active::before {
    opacity: 1;
}

.box-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 28px;
    position: relative;
    z-index: 2;
}

.box-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.carousel-box.active .box-icon {
    transform: scale(1.05);
}

.box-icon.purple {
    background: linear-gradient(135deg, #9B7FDB 0%, #7C5FBD 100%);
}

.box-icon.yellow {
    background: linear-gradient(135deg, #FDB755 0%, #F59E0B 100%);
}

.box-icon.green {
    background: linear-gradient(135deg, #6EE7B7 0%, #34D399 100%);
}

.box-icon.orange {
    background: linear-gradient(135deg, #FB923C 0%, #F97316 100%);
}

.box-icon.pink {
    background: linear-gradient(135deg, #F472B6 0%, #EC4899 100%);
}

.box-icon svg {
    width: 32px;
    height: 32px;
    color: rgba(0, 0, 0, 0.9);
    transition: all 0.5s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.carousel-box.active .box-icon svg {
    color: #000000;
}

.explore-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.explore-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.explore-link:hover {
    color: #ffffff;
}

.explore-link:hover svg {
    transform: translateX(4px);
}

.carousel-box.active .explore-link {
    color: rgba(255, 255, 255, 0.7);
}

.carousel-box h3 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    transition: all 0.6s ease;
    position: relative;
    z-index: 2;
}

.carousel-box.active h3 {
    color: #ffffff;
}

.carousel-box p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    transition: all 0.6s ease;
    position: relative;
    z-index: 2;
}

.carousel-box.active p {
    color: rgba(255, 255, 255, 0.7);
}

.carousel-nav {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(20, 18, 35, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
    z-index: 10;
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

.carousel-nav:hover {
    transform: translateY(-50%) scale(1.1);
    background: rgba(138, 43, 226, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

.carousel-nav:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 15px 60px rgba(138, 43, 226, 0.5),
        0 0 80px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.carousel-nav:hover svg {
    color: #ffffff;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.indicator.active {
    width: 32px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.8);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1024px) {
    .carousel-wrapper {
        padding: 0 90px;
    }
    
    .carousel-box {
        min-width: 350px;
        height: 360px;
    }
    
    .carousel-nav.prev {
        left: 15px;
    }
    
    .carousel-nav.next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .carousel-section {
        padding: 80px 20px;
    }
    
    .carousel-header {
        margin-bottom: 60px;
    }
    
    .carousel-title {
        font-size: 42px;
    }
    
    .carousel-subtitle {
        font-size: 16px;
    }
    
    .carousel-wrapper {
        gap: 20px;
        padding: 0 70px;
    }
    
    .carousel-box {
        min-width: 300px;
        height: 340px;
        padding: 32px 28px 28px;
    }
    
    .carousel-box h3 {
        font-size: 26px;
    }
    
    .carousel-box p {
        font-size: 14px;
    }
    
    .box-icon {
        width: 48px;
        height: 48px;
    }
    
    .box-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .carousel-nav {
        width: 48px;
        height: 48px;
    }
    
    .carousel-nav.prev {
        left: 10px;
    }
    
    .carousel-nav.next {
        right: 10px;
    }
    
    .carousel-nav svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .carousel-section {
        padding: 60px 15px;
    }
    
    .carousel-title {
        font-size: 32px;
    }
    
    .carousel-subtitle {
        font-size: 14px;
    }
    
    .carousel-wrapper {
        padding: 0 60px;
    }
    
    .carousel-box {
        min-width: 280px;
        height: 320px;
        padding: 28px 24px 24px;
    }
    
    .box-icon {
        width: 44px;
        height: 44px;
    }
    
    .box-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .carousel-box h3 {
        font-size: 22px;
    }
    
    .carousel-box p {
        font-size: 13px;
    }
    
    .explore-link {
        font-size: 10px;
    }
    
    .explore-link svg {
        width: 14px;
        height: 14px;
    }
    
    .carousel-nav {
        width: 44px;
        height: 44px;
    }
    
    .carousel-nav.prev {
        left: 5px;
    }
    
    .carousel-nav.next {
        right: 5px;
    }
    
    .carousel-nav svg {
        width: 18px;
        height: 18px;
    }
}

.box-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 180px;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
    transition: all 0.6s ease;
}

.carousel-box.active .box-visual {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.1);
}

.visual-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(155, 127, 219, 0.6) 0%, rgba(124, 95, 189, 0.3) 40%, transparent 70%);
    border-radius: 50%;
    animation: orbPulse 4s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(155, 127, 219, 0.4);
}

@keyframes orbPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
        box-shadow: 0 0 60px rgba(155, 127, 219, 0.4);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.25);
        opacity: 1;
        box-shadow: 0 0 100px rgba(155, 127, 219, 0.6);
    }
}

.visual-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border: 2px solid rgba(155, 127, 219, 0.4);
    border-radius: 50%;
    animation: ringRotate 10s linear infinite;
    box-shadow: 0 0 30px rgba(155, 127, 219, 0.3);
}

@keyframes ringRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.visual-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.visual-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(155, 127, 219, 0.8);
    border-radius: 50%;
    animation: particleFloat 5s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(155, 127, 219, 0.6);
}

.visual-particles span:nth-child(1) {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.visual-particles span:nth-child(2) {
    top: 60%;
    left: 70%;
    animation-delay: 1.7s;
}

.visual-particles span:nth-child(3) {
    top: 80%;
    left: 40%;
    animation-delay: 3.4s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-30px) scale(1.3);
        opacity: 1;
    }
}

.visual-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 100%;
    padding: 30px 20px;
}

.chart-bar {
    width: 24px;
    background: linear-gradient(180deg, rgba(253, 183, 85, 0.8) 0%, rgba(245, 158, 11, 0.4) 100%);
    border-radius: 6px 6px 0 0;
    animation: barGrow 2.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(253, 183, 85, 0.4);
    position: relative;
}

.chart-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 6px 6px 0 0;
}

.chart-bar:nth-child(1) { animation-delay: 0s; }
.chart-bar:nth-child(2) { animation-delay: 0.3s; }
.chart-bar:nth-child(3) { animation-delay: 0.6s; }
.chart-bar:nth-child(4) { animation-delay: 0.9s; }
.chart-bar:nth-child(5) { animation-delay: 1.2s; }

@keyframes barGrow {
    0%, 100% {
        transform: scaleY(1);
        opacity: 0.8;
    }
    50% {
        transform: scaleY(1.15);
        opacity: 1;
    }
}

.visual-network {
    position: relative;
    width: 100%;
    height: 100%;
}

.network-node {
    position: absolute;
    width: 16px;
    height: 16px;
    background: rgba(52, 211, 153, 0.8);
    border: 2px solid rgba(52, 211, 153, 1);
    border-radius: 50%;
    animation: nodePulse 2.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.5);
}

.network-node:nth-child(1) { animation-delay: 0s; }
.network-node:nth-child(2) { animation-delay: 0.6s; }
.network-node:nth-child(3) { animation-delay: 1.2s; }
.network-node:nth-child(4) { animation-delay: 1.8s; }

@keyframes nodePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(52, 211, 153, 0.5), 0 0 0 0 rgba(52, 211, 153, 0.6);
    }
    50% {
        transform: scale(1.3);
        box-shadow: 0 0 30px rgba(52, 211, 153, 0.7), 0 0 0 12px rgba(52, 211, 153, 0);
    }
}

.network-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.visual-speed {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speed-wave {
    position: absolute;
    width: 70px;
    height: 70px;
    border: 3px solid rgba(251, 146, 60, 0.6);
    border-radius: 50%;
    animation: waveExpand 2.5s ease-out infinite;
    box-shadow: 0 0 30px rgba(251, 146, 60, 0.4);
}

.speed-wave:nth-child(1) { animation-delay: 0s; }
.speed-wave:nth-child(2) { animation-delay: 0.8s; }
.speed-wave:nth-child(3) { animation-delay: 1.6s; }

@keyframes waveExpand {
    0% {
        transform: scale(0.4);
        opacity: 1;
        border-width: 3px;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
        border-width: 1px;
    }
}

.visual-shield {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-icon {
    width: 120px;
    height: 140px;
    animation: shieldFloat 4s ease-in-out infinite;
}

@keyframes shieldFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

.shield-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 40px rgba(244, 114, 182, 0.5));
}

.shield-icon svg path:first-child {
    animation: shieldGlow 3s ease-in-out infinite;
}

@keyframes shieldGlow {
    0%, 100% {
        stroke: rgba(244, 114, 182, 0.5);
        fill: rgba(244, 114, 182, 0.1);
    }
    50% {
        stroke: rgba(244, 114, 182, 0.8);
        fill: rgba(244, 114, 182, 0.2);
    }
}

.pricing-toggle {
    position: absolute;
    bottom: -80px;
    left: 20px;
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 4px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10;
}

.pricing-toggle::before {
    content: '';
    position: absolute;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    top: 4px;
    left: 4px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.pricing-toggle.lifetime::before {
    transform: translateX(100%);
}

.toggle-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

.toggle-btn.active {
    color: #ffffff;
}

.toggle-btn:hover:not(.active) {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .pricing-toggle {
        bottom: -60px;
        left: 20px;
    }
    
    .toggle-btn {
        padding: 8px 18px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .pricing-toggle {
        bottom: -50px;
        left: 15px;
    }
    
    .toggle-btn {
        padding: 6px 14px;
        font-size: 11px;
    }
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}


body, html {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}


section {
    max-width: 100vw;
    overflow-x: hidden;
}

.auth-section {
    position: relative;
}

.user-account {
    position: relative;
    display: inline-block;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
}

.user-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(59, 130, 246, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.user-avatar svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.user-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    background: rgba(20, 20, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 16px 0;
    min-width: 280px;
    backdrop-filter: blur(40px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 10000;
    transform: translateY(-10px);
}

.user-dropdown::after {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

.user-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: rgba(20, 20, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
    backdrop-filter: blur(40px);
    z-index: -1;
}



.user-info {
    padding: 0 20px 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 8px;
}

.user-name {
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.user-email {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.user-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.user-dropdown .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.95);
    transform: translateX(4px);
}

.user-dropdown .dropdown-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.logout-btn:hover {
    background: rgba(239, 68, 68, 0.1) !important;
    color: #EF4444 !important;
}

.logout-btn:hover svg {
    color: #EF4444;
}


.account-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.account-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(15, 13, 28, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 40px;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    backdrop-filter: blur(40px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: all 0.3s ease;
}


.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.account-modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.modal-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
}

.close-modal {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.close-modal svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.account-info {
    display: grid;
    gap: 20px;
}

.info-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
}

.info-value {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.plan-badge {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


@media (max-width: 768px) {
    .user-dropdown {
        right: -20px;
        min-width: 260px;
    }
    
    .modal-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .user-avatar {
        width: 38px;
        height: 38px;
    }
    
    .user-avatar svg {
        width: 20px;
        height: 20px;
    }
}



.account-settings-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.settings-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.settings-section:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header svg {
    width: 24px;
    height: 24px;
    color: #3B82F6;
}

.section-header h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.profile-info {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.profile-avatar {
    position: relative;
}

.avatar-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.change-avatar-btn {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.change-avatar-btn:hover {
    background: #ffffff;
    transform: scale(1.1);
}

.change-avatar-btn svg {
    width: 16px;
    height: 16px;
    color: #374151;
}

.profile-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.editable-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.editable-field label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}

.field-group {
    display: flex;
    gap: 8px;
    align-items: center;
}

.field-group input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.field-group input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.field-group input:not(:disabled) {
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.05);
}

.edit-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.edit-btn:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.edit-btn svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.plan-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.current-plan p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-top: 8px;
}

.plan-badge-large {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.upgrade-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.upgrade-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

.upgrade-btn svg {
    width: 18px;
    height: 18px;
}

.security-actions {
    display: flex;
    gap: 16px;
}

.security-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.security-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
}

.security-btn svg {
    width: 20px;
    height: 20px;
}

.modal-actions {
    display: flex;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.save-changes-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.save-changes-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.delete-account-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #EF4444;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.delete-account-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-2px);
}

.save-changes-btn svg,
.delete-account-btn svg {
    width: 18px;
    height: 18px;
}


.projects-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon.active {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.stat-icon.completed {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.stat-icon.total {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.stat-icon svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
}

.project-filters {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 8px;
}

.filter-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.project-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.project-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.project-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.project-type {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-type.discord {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
}

.project-type.website {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.project-type.fivem {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.project-type svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.project-info {
    flex: 1;
}

.project-info h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.project-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.project-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-status.active {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.project-status.completed {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.project-status.pending {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.project-details {
    margin-bottom: 16px;
}

.project-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 12px;
}

.project-meta span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.project-meta strong {
    color: rgba(255, 255, 255, 0.8);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3B82F6 0%, #10B981 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.project-actions {
    display: flex;
    gap: 12px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-1px);
}

.action-btn.pay {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: #10B981;
}

.action-btn.pay:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.5);
}

.action-btn.decline {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #EF4444;
}

.action-btn.decline:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
}

.action-btn svg {
    width: 16px;
    height: 16px;
}

.new-project-section {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.new-project-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.new-project-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.new-project-btn svg {
    width: 20px;
    height: 20px;
}


.billing-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.billing-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.summary-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.summary-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.summary-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-card.total .summary-icon {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.summary-card.monthly .summary-icon {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.summary-card.projects .summary-icon {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.summary-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.summary-info {
    display: flex;
    flex-direction: column;
}

.summary-amount {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.summary-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
}



.transaction-history {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
}

.history-filters {
    display: flex;
    gap: 8px;
}

.transactions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.transaction-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.transaction-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.transaction-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transaction-icon.discord {
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
}

.transaction-icon.website {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.transaction-icon.fivem {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.transaction-icon svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

.transaction-details {
    flex: 1;
}

.transaction-main {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.transaction-main h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.transaction-id {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-family: 'Courier New', monospace;
}

.transaction-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.transaction-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.transaction-status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.transaction-status.completed {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.transaction-status.pending {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.transaction-amount {
    display: flex;
    align-items: center;
    gap: 12px;
}

.amount {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

.transaction-action {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.transaction-action:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.transaction-action.pay {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.transaction-action.pay:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.5);
}

.transaction-action svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.transaction-action.pay svg {
    color: #10B981;
}

.export-section {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.export-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.export-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-1px);
}

.export-btn svg {
    width: 16px;
    height: 16px;
}


@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        max-height: 90vh;
        overflow-y: auto;
        padding: 24px 20px;
        margin: 20px 10px;
    }
    
    .account-settings-container,
    .projects-container,
    .billing-container {
        gap: 20px;
    }
    
    .project-stats,
    .billing-summary {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .profile-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
    
    .security-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .project-actions {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .project-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .transaction-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
    }
    
    .transaction-amount {
        align-self: flex-end;
    }
    
    .stat-card,
    .summary-card {
        padding: 16px;
    }
    
    .project-card {
        padding: 16px;
    }
    
    .settings-section {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        max-width: 98%;
        max-height: 95vh;
        padding: 20px 16px;
        margin: 10px 5px;
        border-radius: 16px;
    }
    
    .modal-header {
        margin-bottom: 20px;
    }
    
    .modal-title {
        font-size: 20px;
    }
    
    .field-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .edit-btn {
        width: 100%;
        height: 36px;
    }
    
    .project-filters,
    .history-filters {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

.support-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.support-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-icon.open {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.stat-icon.resolved {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.stat-icon.response {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.new-ticket-section {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.new-ticket-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.new-ticket-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.new-ticket-btn svg {
    width: 20px;
    height: 20px;
}

.ticket-filters {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 8px;
}

.tickets-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ticket-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.ticket-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.ticket-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.ticket-priority {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticket-priority.high {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.ticket-priority.medium {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.ticket-priority.low {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.ticket-priority svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

.ticket-info {
    flex: 1;
}

.ticket-info h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.ticket-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.ticket-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticket-status.open {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.ticket-status.in-progress {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.ticket-status.resolved {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.ticket-details {
    margin-bottom: 16px;
}

.ticket-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.ticket-meta span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.ticket-meta strong {
    color: rgba(255, 255, 255, 0.8);
}

.ticket-actions {
    display: flex;
    gap: 12px;
}

.action-btn.reply {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #3B82F6;
}

.action-btn.reply:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
}

.action-btn.rate {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    color: #F59E0B;
}

.action-btn.rate:hover {
    background: rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.5);
}

.knowledge-base {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
}

.knowledge-base .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.view-all-link {
    color: #3B82F6;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: #60A5FA;
    text-decoration: underline;
}

.kb-articles {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kb-article {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kb-article:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

.kb-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kb-icon svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

.kb-content h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.kb-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
}


@media (max-width: 768px) {
    .support-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .ticket-filters {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .ticket-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .ticket-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .ticket-actions {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .kb-article {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

.new-ticket-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cancel-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.submit-btn {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}


.ticket-detail-view {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ticket-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticket-detail-header h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.ticket-badges {
    display: flex;
    gap: 8px;
}

.ticket-detail-info {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
}

.info-row {
    display: flex;
    gap: 32px;
    margin-bottom: 16px;
}

.info-row span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.info-row strong {
    color: rgba(255, 255, 255, 0.8);
}

.ticket-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.ticket-description strong {
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 8px;
}

.ticket-description p {
    margin: 0;
    line-height: 1.6;
}

.ticket-messages {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
}

.ticket-messages h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.messages-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.message {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
}

.user-message {
    border-left: 4px solid #3B82F6;
    background: rgba(59, 130, 246, 0.05);
}

.support-message {
    border-left: 4px solid #10B981;
    background: rgba(16, 185, 129, 0.05);
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.message-header strong {
    color: #ffffff;
    font-size: 14px;
}

.message-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.message-content {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.reply-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
}

.reply-section textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 14px;
    resize: vertical;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.reply-section textarea:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.05);
}

.reply-section textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.reply-btn {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.reply-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}


@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .ticket-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .ticket-badges {
        align-self: flex-end;
    }
    
    .info-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .message-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}


.live-chat-container {
    display: flex;
    flex-direction: column;
    height: 500px;
    max-height: 70vh;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px 12px 0 0;
}

.agent-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.agent-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent-avatar svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

.agent-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.agent-name {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.agent-status {
    font-size: 12px;
    font-weight: 500;
}

.agent-status.online {
    color: #10B981;
}

.chat-action-btn {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #EF4444;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-action-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
}

.chat-action-btn svg {
    width: 16px;
    height: 16px;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: rgba(0, 0, 0, 0.2);
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chat-input-section {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 12px 12px;
}

.chat-input-container {
    display: flex;
    gap: 12px;
    align-items: center;
}

.chat-input-container input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.chat-input-container input:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.05);
}

.chat-input-container input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.send-chat-btn {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: #ffffff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.send-chat-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}

.send-chat-btn svg {
    width: 18px;
    height: 18px;
}


.rating-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    padding: 20px;
}

.rating-container h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.rating-container p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.star-rating {
    display: flex;
    gap: 8px;
    font-size: 32px;
    cursor: pointer;
}

.star {
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    user-select: none;
}

.star:hover,
.star.hover {
    color: #F59E0B;
    transform: scale(1.1);
}

.star.selected {
    color: #F59E0B;
}

.rating-feedback {
    width: 100%;
}

.rating-feedback textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 14px;
    resize: vertical;
    transition: all 0.3s ease;
}

.rating-feedback textarea:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.05);
}

.rating-feedback textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.rating-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.submit-rating-btn {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.submit-rating-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.4);
}


.knowledge-base-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kb-search {
    position: relative;
    display: flex;
    align-items: center;
}

.kb-search input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px 12px 44px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.kb-search input:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.05);
}

.kb-search input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.kb-search svg {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

.kb-categories {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.kb-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kb-category:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.kb-category.active {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    border-color: rgba(59, 130, 246, 0.4);
    color: #ffffff;
}

.kb-articles-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kb-article-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kb-article-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

.kb-article-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kb-article-icon svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

.kb-article-content {
    flex: 1;
}

.kb-article-content h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.kb-article-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0 0 4px 0;
}

.kb-article-meta {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}


.kb-article-view {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.article-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.article-content h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 16px 0;
}

.article-content h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 24px 0 12px 0;
}

.article-content p {
    margin: 0 0 16px 0;
}

.article-content ul,
.article-content ol {
    margin: 0 0 16px 0;
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.back-btn svg {
    width: 16px;
    height: 16px;
}

.helpful-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #ffffff;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.helpful-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
}

.helpful-btn svg {
    width: 16px;
    height: 16px;
}


.ticket-actions-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.action-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.action-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.action-btn.primary {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.action-btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}

.resolved-section {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.resolved-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #10B981;
    font-weight: 500;
}

.resolved-message svg {
    width: 20px;
    height: 20px;
}

.rate-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.rate-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.4);
}

.rate-btn svg {
    width: 16px;
    height: 16px;
}


.attachment {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.attachment svg {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.reply-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.attach-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.attach-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.attach-btn svg {
    width: 16px;
    height: 16px;
}


@media (max-width: 768px) {
    .live-chat-container {
        height: 400px;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-messages {
        padding: 16px;
    }
    
    .chat-input-section {
        padding: 12px 16px;
    }
    
    .rating-container {
        padding: 16px;
    }
    
    .star-rating {
        font-size: 28px;
        gap: 6px;
    }
    
    .kb-categories {
        gap: 6px;
    }
    
    .kb-category {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .kb-article-item {
        padding: 12px;
        gap: 12px;
    }
    
    .kb-article-icon {
        width: 36px;
        height: 36px;
    }
    
    .article-actions {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .ticket-actions-footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .reply-actions {
        flex-direction: column;
        align-items: stretch;
    }
}


.footer {
    background: linear-gradient(180deg, #000000 0%, #0A0812 50%, #000000 100%);
    padding: 80px 20px 40px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-rotated {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.logo-rotated:hover {
    transform: rotate(180deg) scale(1.1);
}

.footer-logo span {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: block;
    padding: 4px 0;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}


@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 32px;
    }
    
    .footer-section:nth-child(4),
    .footer-section:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: left;
    }
    
    .footer-section:first-child {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-description {
        text-align: center;
        max-width: none;
        margin: 0 auto 24px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .footer-bottom-links {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 50px 15px 25px;
    }
    
    .footer-content {
        gap: 28px;
    }
    
    .footer-logo span {
        font-size: 16px;
    }
    
    .footer-description {
        font-size: 13px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-bottom p,
    .footer-bottom-links a {
        font-size: 13px;
    }
    
    .footer-bottom-links {
        gap: 12px;
    }
}

.terms-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.terms-modal.active {
    opacity: 1;
    visibility: visible;
}

.terms-modal-content {
    background: rgba(15, 13, 28, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 40px;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    backdrop-filter: blur(40px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.terms-modal.active .terms-modal-content {
    transform: scale(1);
}


.terms-modal-content::-webkit-scrollbar {
    width: 8px;
}

.terms-modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.terms-modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.terms-modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.terms-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.terms-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.terms-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.terms-close svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.terms-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.terms-content h2 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 15px 0;
}

.terms-content h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 25px 0 12px 0;
}

.terms-content p {
    margin-bottom: 16px;
    font-size: 14px;
}

.terms-content ul, .terms-content ol {
    margin: 16px 0;
    padding-left: 20px;
}

.terms-content li {
    margin-bottom: 8px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .terms-modal-content {
        padding: 30px 20px;
        margin: 20px;
        max-height: 90vh;
    }
    
    .terms-title {
        font-size: 20px;
    }
    
    .terms-content h2 {
        font-size: 18px;
    }
    
    .terms-content h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .terms-modal-content {
        padding: 25px 15px;
        margin: 15px;
        max-height: 95vh;
    }
    
    .terms-header {
        margin-bottom: 20px;
    }
    
    .terms-title {
        font-size: 18px;
    }
}