:root {
    --primary: #BFF747;
    --primary-dark: #9ED12D;
    --primary-glow: rgba(191, 247, 71, 0.25);
    --bg-dark: #070708;
    --card-bg: rgba(18, 18, 22, 0.7);
    --card-hover: rgba(25, 25, 30, 0.85);
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --border-light: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(191, 247, 71, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(191, 247, 71, 0.02) 0%, transparent 45%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0d0d0f;
}
::-webkit-scrollbar-thumb {
    background: #25252b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Navbar & Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(7, 7, 8, 0.85);
    backdrop-filter: blur(15px);
    border-color: var(--border-light);
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

header.scrolled .container {
    padding: 10px 24px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    gap: 8px;
    margin-left: 15px;
    margin-top: 6px;
}

.logo span {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.logo img {
    height: 48px;
    object-fit: contain;
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 6px 0;
}

nav a:hover, nav a.active {
    color: #fff;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(191, 247, 71, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--primary-glow);
}

.cart-link {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-dark);
}

/* Auth Button */
.btn-auth {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(191, 247, 71, 0.45);
}

/* User Profile Dropdown */
.user-dropdown {
    position: relative;
}

.user-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.user-trigger:hover, .user-dropdown.active .user-trigger {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(191, 247, 71, 0.1);
    color: var(--primary);
    border: 1px solid rgba(191, 247, 71, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.username {
    font-size: 0.9rem;
    font-weight: 500;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-trigger i {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.user-dropdown.active .user-trigger i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 220px;
    background: rgba(15, 15, 18, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 8px;
    display: none;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    transform-origin: top right;
    animation: dropdownFade 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.user-dropdown.active .dropdown-menu {
    display: flex;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: scale(0.95) translateY(-10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 10px;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    color: var(--primary);
    background: rgba(191, 247, 71, 0.05);
    transform: translateX(4px);
}

.dropdown-divider {
    height: 1px;
    background: var(--border-light);
    margin: 8px 0;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 30px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive */
@media (max-width: 992px) {
    .mobile-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(10, 10, 12, 0.98);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--border-light);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 60px 40px;
        gap: 24px;
        z-index: 1000;
        transition: var(--transition);
    }

    nav.active {
        right: 0;
    }

    nav a {
        font-size: 1.1rem;
        width: 100%;
    }

    nav a::after {
        display: none;
    }
}

/* Footer */
footer.main-footer {
    background: #050506;
    border-top: 1px solid var(--border-light);
    padding: 80px 0 30px;
    margin-top: auto;
    position: relative;
    z-index: 10;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}

.footer-about h3 span {
    color: var(--primary);
}

.footer-about p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 24px;
    max-width: 400px;
}

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

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

.footer-links ul a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

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

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

/* Common UI Components & Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(191, 247, 71, 0.45);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(191, 247, 71, 0.05) 0%, rgba(7, 7, 8, 0.95) 70%);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/banner.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    transition: var(--transition);
}

.hero-video-active .hero-bg-overlay {
    background-image: none !important;
    background: rgba(7, 7, 8, 0.65) !important;
    opacity: 1 !important;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(191, 247, 71, 0.08);
    border: 1px solid rgba(191, 247, 71, 0.2);
    border-radius: 100px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions-group {
    display: flex;
    justify-content: center;
    gap: 16px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-actions-group {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Marquee Band */
.marquee-band {
    background: var(--primary);
    color: #000;
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 10;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
    padding-left: 100%;
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 50px;
}

.marquee-content i {
    font-size: 0.8rem;
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* About Us Section with Overlapping Cards */
.about-us {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-us-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-us-images {
    position: relative;
    height: 520px;
    width: 100%;
}

.about-image-1 {
    position: absolute;
    left: 0;
    top: 50px;
    width: 250px;
    z-index: 2;
    transform: rotate(-6deg);
    transition: var(--transition);
}

.about-image-1 img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.about-image-2 {
    position: absolute;
    right: 20px;
    top: 10px;
    width: 270px;
    z-index: 1;
    transform: rotate(4deg);
    transition: var(--transition);
}

.about-image-2 img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.about-image-3 {
    position: absolute;
    right: 40px;
    bottom: 20px;
    width: 240px;
    z-index: 3;
    transform: rotate(-3deg);
    transition: var(--transition);
}

.about-image-3 img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* Hover effects to raise cards */
.about-image-1:hover {
    transform: rotate(-6deg) scale(1.03) translateY(-10px);
    z-index: 5;
}

.about-image-2:hover {
    transform: rotate(4deg) scale(1.03) translateY(-10px);
    z-index: 5;
}

.about-image-3:hover {
    transform: rotate(-3deg) scale(1.03) translateY(-10px);
    z-index: 5;
}

.about-image-circle {
    position: absolute;
    left: -50px;
    top: -50px;
    width: 120px;
    height: 120px;
    z-index: 10;
    animation: spinCircle 20s linear infinite;
}

.about-image-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(191, 247, 71, 0.15);
}

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

.about-us-content {
    display: flex;
    flex-direction: column;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.about-us-content h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-us-content h2 span {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.about-us-content p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 24px;
}

.about-us-list ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-us-list ul li {
    position: relative;
    padding-left: 32px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.5;
}

.about-us-list ul li::before {
    content: "\f058"; /* check-circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--primary);
    font-size: 1.2rem;
    text-shadow: 0 0 10px var(--primary-glow);
}

/* Translucent Glassmorphic Discord Button */
.discord-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: rgba(191, 247, 71, 0.04);
    border: 1px solid rgba(191, 247, 71, 0.12);
    border-radius: 16px;
    padding: 16px 24px;
    text-decoration: none;
    transition: var(--transition);
    max-width: 380px;
}

.discord-banner-btn:hover {
    background: rgba(191, 247, 71, 0.08);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(191, 247, 71, 0.08);
}

.discord-bubble-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 0 15px var(--primary-glow);
}

.discord-bubble-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.discord-bubble-text .lbl-small {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.discord-bubble-text .lbl-large {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.discord-bubble-text .lbl-large span {
    color: var(--primary);
}

@media (max-width: 992px) {
    .about-us-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-us-images {
        height: 480px;
        max-width: 500px;
        margin: 0 auto;
    }
    .about-image-1 {
        width: 210px;
        top: 40px;
    }
    .about-image-2 {
        width: 230px;
        right: 10px;
    }
    .about-image-3 {
        width: 200px;
        right: 20px;
        bottom: 10px;
    }
    .about-image-circle {
        width: 100px;
        height: 100px;
        left: -40px;
        top: -40px;
    }
}

@media (max-width: 480px) {
    .about-us-images {
        height: 380px;
    }
    .about-image-1 {
        width: 160px;
        top: 30px;
    }
    .about-image-2 {
        width: 180px;
    }
    .about-image-3 {
        width: 150px;
    }
    .about-image-circle {
        width: 80px;
        height: 80px;
        left: -30px;
        top: -30px;
    }
}

/* Categories & Products Section */
.categories-section {
    padding: 100px 24px;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.categories-container {
    max-width: 1200px;
    margin: 0 auto;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
    border-color: var(--primary);
    color: #fff;
    background: rgba(191, 247, 71, 0.05);
    box-shadow: 0 0 15px var(--primary-glow);
}

.tab-content {
    min-height: 200px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-pane.active {
    display: block;
}

.category-info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.category-info-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.category-info-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

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

/* System Status Section */
.status-section {
    padding: 100px 24px;
}

.status-container {
    max-width: 1200px;
    margin: 0 auto;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.status-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.status-card:hover {
    border-color: var(--primary);
    background: var(--card-hover);
    transform: translateY(-2px);
}

.status-info {
    flex-grow: 1;
}

.status-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0;
}

.status-info p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.status-indicator-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.status-badge.online {
    background: rgba(191, 247, 71, 0.1);
    color: var(--primary);
    border: 1px solid rgba(191, 247, 71, 0.2);
}

.status-badge.updating {
    background: rgba(255, 165, 2, 0.1);
    color: #ffa502;
    border: 1px solid rgba(255, 165, 2, 0.2);
}

.status-badge.offline {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
    border: 1px solid rgba(255, 71, 87, 0.2);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px currentColor;
}

.status-dot.online {
    background: var(--primary);
    color: var(--primary);
}

.status-dot.updating {
    background: #ffa502;
    color: #ffa502;
}

.status-dot.offline {
    background: #ff4757;
    color: #ff4757;
}

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

/* Testimonials Section */
.testimonials-section {
    padding: 120px 24px;
    background: radial-gradient(circle at 90% 10%, rgba(191, 247, 71, 0.02) 0%, transparent 40%);
    border-top: 1px solid var(--border-light);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-box {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.testimonials-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonials-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 0 10px var(--primary-glow);
}

.testimonials-header h2 {
    font-size: 2.2rem;
    font-weight: 850;
    line-height: 1.3;
    margin-top: 10px;
}

.testimonials-header h2 span {
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow);
}

.testimonials-stat-box {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    backdrop-filter: blur(10px);
}

.testimonials-stat-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonials-counter {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonials-counter h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 0 20px var(--primary-glow);
}

.testimonials-counter span {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonial Swiper Slider */
.testimonials-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 10px;
}

.testimonial-card-item {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    backdrop-filter: blur(15px);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-card-item:hover {
    border-color: rgba(191, 247, 71, 0.2);
    box-shadow: 0 15px 40px rgba(191, 247, 71, 0.05);
    transform: translateY(-2px);
}

.testimonial-rating {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
}

.testimonial-rating i {
    color: var(--primary);
    font-size: 0.95rem;
    text-shadow: 0 0 8px var(--primary-glow);
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-user-info {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.user-avatar-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(191, 247, 71, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 0 5px var(--primary-glow);
}

.user-details h4 {
    font-size: 1rem;
    font-weight: 650;
    color: #fff;
    margin-bottom: 2px;
}

.user-details span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.quote-decor {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 3rem;
    opacity: 0.04;
    color: var(--primary);
}

/* Navigation Buttons inside Swiper */
.swiper-nav-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    justify-content: flex-end;
}

.swiper-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition);
}

.swiper-nav-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(191, 247, 71, 0.05);
    box-shadow: 0 0 15px rgba(191, 247, 71, 0.15);
}

@media (max-width: 992px) {
    .testimonials-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 24px;
    border-top: 1px solid var(--border-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    user-select: none;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.9rem;
}

.faq-answer p {
    padding-bottom: 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Projects Listing Page */
.projects-header {
    padding: 140px 24px 60px;
    background: radial-gradient(circle at center, rgba(191, 247, 71, 0.03) 0%, rgba(7, 7, 8, 0.95) 70%);
    text-align: center;
}

.projects-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.projects-header h1 span {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.projects-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 100px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

.project-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    border-color: var(--primary);
    background: var(--card-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(191, 247, 71, 0.05);
}

.project-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #121216;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-card-image img {
    transform: scale(1.05);
}

.project-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
}

.project-card-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.project-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.project-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.project-card-price {
    display: flex;
    flex-direction: column;
}

.project-card-price span:first-child {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.project-card-price span:last-child {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}

/* Product Detail Page */
.product-detail-container {
    max-width: 1200px;
    margin: 120px auto 100px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.product-media-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-main-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    height: 350px;
    background: #121216;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.product-description-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 30px;
    margin-top: 30px;
}

.product-description-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.product-description-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-sidebar-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 30px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.product-sidebar-card h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.product-meta-list {
    margin-bottom: 30px;
}

.product-meta-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
}

.product-meta-item span:first-child {
    color: var(--text-muted);
}

.product-meta-item span:last-child {
    font-weight: 600;
}

.duration-selection-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.duration-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.duration-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.duration-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.duration-card.active {
    border-color: var(--primary);
    background: rgba(191, 247, 71, 0.05);
    box-shadow: 0 0 15px var(--primary-glow);
}

.duration-name {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

.duration-card.active .duration-name {
    color: var(--primary);
}

.duration-price {
    font-size: 1.25rem;
    font-weight: 800;
}

.btn-add-cart {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    justify-content: center;
}

@media (max-width: 992px) {
    .product-detail-container {
        grid-template-columns: 1fr;
    }
    .product-sidebar-card {
        position: relative;
        top: 0;
    }
}

/* Payment & Shopping Cart Page */
.cart-layout {
    max-width: 1200px;
    margin: 120px auto 100px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1.1fr;
    gap: 40px;
}

.cart-items-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 30px;
}

.cart-items-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.cart-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 16px;
    transition: var(--transition);
}

.cart-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    background: #121216;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-name {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-item-duration {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn:hover {
    border-color: var(--primary);
    background: rgba(191, 247, 71, 0.1);
    color: var(--primary);
}

.qty-val {
    font-size: 0.95rem;
    font-weight: 600;
    width: 20px;
    text-align: center;
}

.cart-item-price-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    min-width: 100px;
}

.cart-item-subtotal {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
}

.btn-remove-item {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-remove-item:hover {
    color: #ff4757;
}

/* Cart Summary Sidebar */
.cart-summary-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 30px;
    height: fit-content;
}

.cart-summary-card h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.summary-row.discount {
    color: var(--primary);
}

.summary-divider {
    height: 1px;
    background: var(--border-light);
    margin: 20px 0;
}

.summary-row.total {
    font-size: 1.25rem;
    font-weight: 800;
}

.summary-row.total span:last-child {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

/* Coupon Box */
.coupon-box {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.coupon-input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 14px;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
}

.coupon-input:focus {
    border-color: var(--primary);
}

.btn-coupon {
    padding: 10px 16px;
    font-size: 0.85rem;
}

/* Gateway Grid */
.gateways-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.gateways-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.gateway-option {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    transition: var(--transition);
}

.gateway-option:hover {
    background: rgba(255, 255, 255, 0.03);
}

.gateway-option.active {
    border-color: var(--primary);
    background: rgba(191, 247, 71, 0.04);
}

.gateway-option input {
    display: none;
}

.gateway-radio-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.gateway-option.active .gateway-radio-dot {
    border-color: var(--primary);
}

.gateway-option.active .gateway-radio-dot::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    display: block;
}

.gateway-name {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
}

/* Orders Dashboard (active licenses) */
.orders-layout {
    max-width: 1000px;
    margin: 120px auto 100px;
    padding: 0 24px;
}

.orders-layout h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.orders-layout h2 span {
    color: var(--primary);
}

.license-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.license-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition);
}

.license-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: var(--card-hover);
}

.license-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.license-product-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.license-product-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.license-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.key-box-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
}

.key-display-wrapper {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 10px 16px;
    gap: 12px;
}

.key-input {
    flex-grow: 1;
    background: none;
    border: none;
    color: #fff;
    font-family: monospace;
    font-size: 1.05rem;
    outline: none;
    letter-spacing: 1px;
}

.key-action-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.key-action-btn:hover {
    color: #fff;
}

.license-timer-box {
    display: flex;
    flex-direction: column;
}

.timer-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 6px;
}

.timer-val {
    font-size: 1.2rem;
    font-weight: 700;
}

.timer-val.active-time {
    color: var(--primary);
}

.timer-val.paused-time {
    color: #ffa502;
}

.timer-val.expired-time {
    color: #ff4757;
}

.license-btn-control {
    width: 100%;
    padding: 12px;
    font-size: 0.9rem;
    justify-content: center;
}

.license-btn-control.btn-pause {
    background: rgba(255, 165, 2, 0.1);
    color: #ffa502;
    border: 1px solid rgba(255, 165, 2, 0.25);
    box-shadow: none;
}

.license-btn-control.btn-pause:hover {
    background: #ffa502;
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 165, 2, 0.3);
}

.license-btn-control.btn-resume {
    background: rgba(191, 247, 71, 0.1);
    color: var(--primary);
    border: 1px solid rgba(191, 247, 71, 0.25);
    box-shadow: none;
}

.license-btn-control.btn-resume:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 4px 15px var(--primary-glow);
}

@media (max-width: 768px) {
    .license-details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .license-btn-control {
        margin-top: 10px;
    }
}

/* Tickets & Live Support Page */
.tickets-wrapper {
    max-width: 1200px;
    margin: 120px auto 100px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    height: 700px;
}

.ticket-sidebar-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ticket-sidebar-header {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ticket-sidebar-header h2 {
    font-size: 1.4rem;
    font-weight: 800;
}

.btn-new-ticket {
    width: 100%;
    justify-content: center;
    padding: 10px;
    font-size: 0.9rem;
}

.ticket-list-scroll {
    overflow-y: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 4px;
}

.ticket-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ticket-item:hover, .ticket-item.active {
    border-color: var(--primary);
    background: rgba(191, 247, 71, 0.04);
}

.ticket-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ticket-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Chat area */
.ticket-chat-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.chat-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-muted);
    text-align: center;
    gap: 16px;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 20px;
}

.chat-title-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.chat-title-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.chat-messages {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.chat-bubble {
    max-width: 70%;
    padding: 14px 18px;
    border-radius: 16px;
    line-height: 1.5;
    font-size: 0.92rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.chat-bubble.user {
    align-self: flex-end;
    background: rgba(191, 247, 71, 0.05);
    border: 1px solid rgba(191, 247, 71, 0.2);
    border-bottom-right-radius: 4px;
}

.chat-bubble.admin {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-bottom-left-radius: 4px;
}

.chat-bubble-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.chat-bubble.admin .chat-bubble-meta span:first-child {
    color: var(--primary);
    font-weight: 600;
}

.chat-input-form {
    display: flex;
    gap: 12px;
}

.chat-textarea {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 12px 16px;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    resize: none;
    height: 48px;
    transition: var(--transition);
}

.chat-textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.04);
}

.btn-chat-send {
    padding: 0 24px;
    height: 48px;
}

/* Modal Form for New Ticket */
.new-ticket-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    justify-content: center;
}

.btn-close-ticket {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
    border: 1px solid rgba(255, 71, 87, 0.2);
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-close-ticket:hover {
    background: #ff4757;
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

@media (max-width: 768px) {
    .tickets-wrapper {
        grid-template-columns: 1fr;
        height: auto;
    }
    .ticket-sidebar-card {
        height: 300px;
    }
    .ticket-chat-card {
        height: 500px;
    }
}



/* Authentication Pages */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px;
    background: radial-gradient(circle at center, rgba(191, 247, 71, 0.04) 0%, rgba(7, 7, 8, 0.95) 75%);
}

.auth-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.auth-header h2 span {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.auth-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.input-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-field {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 14px 16px;
    padding-right: 48px;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.input-field:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.04);
}

.password-toggle {
    position: absolute;
    right: 16px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    background: none;
    border: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle:hover {
    color: #fff;
}

.btn-auth-submit {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    font-weight: 700;
    justify-content: center;
    margin-top: 10px;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Legal Pages Styling */
.legal-section {
    min-height: calc(100vh - 400px);
    padding: 160px 0 100px;
    position: relative;
    z-index: 2;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 50px 40px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.legal-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-title i {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 16px;
    color: var(--primary);
    text-shadow: 0 0 5px rgba(191, 247, 71, 0.15);
}

.legal-content p, .legal-content li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-content strong {
    color: #fff;
    font-weight: 600;
}

/* Empty State Premium Styling */
.empty-state-wrapper {
    position: relative;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.75) 0%, rgba(10, 10, 12, 0.95) 100%);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    backdrop-filter: blur(15px);
    overflow: hidden;
    max-width: 600px;
    margin: 40px auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.empty-state-wrapper:hover {
    border-color: rgba(191, 247, 71, 0.25);
    box-shadow: 0 25px 50px rgba(191, 247, 71, 0.05);
    transform: translateY(-2px);
}

.empty-state-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(191, 247, 71, 0.08) 0%, transparent 70%);
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
    filter: blur(30px);
}

.empty-state-icon {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.empty-state-icon .icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(191, 247, 71, 0.03);
    border: 1px solid rgba(191, 247, 71, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    position: relative;
    animation: floatIcon 4s ease-in-out infinite;
}

.empty-state-icon .icon-main {
    font-size: 2.2rem;
    color: var(--primary);
    text-shadow: 0 0 15px rgba(191, 247, 71, 0.4);
}

.empty-state-icon .icon-overlay {
    position: absolute;
    bottom: -2px;
    right: -2px;
    font-size: 1.1rem;
    color: #ff4757;
    background: #0a0a0a;
    border-radius: 50%;
    padding: 3px;
    border: 2px solid #ff4757;
    box-shadow: 0 0 10px rgba(255, 71, 87, 0.4);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-state-title {
    font-size: 1.4rem;
    font-weight: 750;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    position: relative;
    z-index: 1;
}

.empty-state-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 460px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.empty-state-btn {
    position: relative;
    z-index: 1;
    padding: 14px 32px;
    border-radius: 14px;
    font-size: 0.95rem;
    box-shadow: 0 8px 25px rgba(191, 247, 71, 0.2);
}

@keyframes floatIcon {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Premium Service Item Box (Two Columns, matching original) */
.service-item-box {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(15px);
    transition: var(--transition);
}

.service-item-box:hover {
    border-color: rgba(191, 247, 71, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.services-content-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.services-content-item h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.services-content-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    white-space: pre-wrap;
}

.urun-button .btn-highlighted {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.urun-button .btn-highlighted:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(191, 247, 71, 0.45);
}

/* Square image format */
.service-tab-image {
    width: 320px;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    flex-shrink: 0;
    position: relative;
}

.service-tab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item-box:hover .service-tab-image img {
    transform: scale(1.05);
}

/* Tab button styling with icon */
.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
    color: #fff;
    background: rgba(191, 247, 71, 0.05);
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.tab-btn .icon-box {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tab-btn .icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsiveness */
@media (max-width: 992px) {
    .service-item-box {
        flex-direction: column-reverse;
        padding: 40px 30px;
        gap: 30px;
    }
    .service-tab-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        max-width: 350px;
    }
}





