/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #10b981;
    --dark-bg: #0a0e13;
    --darker-bg: #000000;
    --card-bg: #1a1f2e;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --border-color: #2d3748;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--text-primary);
    white-space: nowrap;
}

.logo i {
    color: #3b82f6;
    font-size: 1.8rem;
}

.navbar-logo-img {
    max-height: 50px;
    height: auto;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    flex: 1;
    margin-left: 3rem;
}

.nav-menu-link {
    color: #9a9a9a;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 0.3rem;
}

.nav-menu-link i {
    font-size: 1.1rem;
}

.nav-menu-link:hover {
    color: white;
}

.nav-menu-link.active {
    color: white;
    border-bottom: 2px solid #3b82f6;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-icon {
    background: transparent;
    border: none;
    color: #9a9a9a;
    font-size: 1.3rem;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.btn-icon:hover {
    color: white;
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    object-fit: cover;
}

.nav-username {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Profil Dropdown */
.nav-profile-wrapper {
    position: relative;
}

.nav-profile-trigger {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    padding: 0.4rem 0.8rem;
    border-radius: 10px;
    transition: background 0.3s;
    user-select: none;
}

.nav-profile-trigger:hover {
    background: rgba(255, 255, 255, 0.06);
}

.nav-arrow {
    font-size: 0.7rem;
    color: var(--text-secondary);
    transition: transform 0.3s;
}

.nav-profile-wrapper.active .nav-arrow {
    transform: rotate(180deg);
}

.nav-profile-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 280px;
    max-width: 90vw;
    max-height: 80vh;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 2000;
    overflow-y: auto;
}

.nav-profile-wrapper.active .nav-profile-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-dropdown-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 1.2rem;
    background: rgba(16, 185, 129, 0.05);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.dropdown-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    object-fit: cover;
}

.dropdown-user-info {
    display: flex;
    flex-direction: column;
}

.dropdown-username {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.dropdown-role {
    font-size: 0.78rem;
    color: var(--primary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-role.discord-role {
    /* Discord rolü için özel stiller - inline style ile renk eklenir */
    font-weight: 600;
}

.dropdown-role i {
    font-size: 0.7rem;
}

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

.profile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.85rem 1.2rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    width: 100%;
}
}

.profile-dropdown-item:hover {
    background: rgba(16, 185, 129, 0.08);
    color: var(--text-primary);
}

.profile-dropdown-item i {
    width: 18px;
    text-align: center;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.profile-dropdown-item:hover i {
    color: #3b82f6;
}

.dropdown-admin {
    color: #f59e0b;
}

.dropdown-admin:hover {
    background: rgba(245, 158, 11, 0.08);
    color: #fbbf24;
}

.dropdown-logout {
    color: #ef4444;
}

.dropdown-logout:hover {
    background: rgba(239, 68, 68, 0.08);
    color: #f87171;
}

.profile-item-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    flex: 1;
}

.profile-item-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.profile-item-value {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-icon {
    color: var(--text-primary);
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s;
}

.btn-icon:hover {
    color: var(--primary-color);
}

.btn-login {
    background: transparent;
    color: #9a9a9a;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    cursor: pointer;
}

.btn-login:hover {
    color: white;
    background: transparent;
}

.btn-register {
    background: #3b82f6;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    cursor: pointer;
    font-weight: 600;
}

.btn-register:hover {
    background: #2563eb;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-admin-login {
    border-color: rgba(245, 158, 11, 0.4);
    color: #f59e0b;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

.btn-admin-login:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: #f59e0b;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0a0e13 0%, #111827 50%, #1a1f2e 100%);
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    margin-top: 70px;
    padding-bottom: 120px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 14, 19, 0.92) 0%, rgba(17, 24, 39, 0.90) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.hero-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(26, 58, 46, 0.8);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    margin-bottom: 3rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
    font-size: 1rem;
    font-weight: 600;
}

.hero-top-badge i {
    color: white;
    font-size: 1.2rem;
}

.hero-greeting {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.hero-welcome-to {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
}

.hero-main-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-powered-by {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.hero-powered-by i {
    color: rgba(255, 255, 255, 0.4);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 6rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat h2 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-weight: 900;
}

.stat p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.btn-discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.5);
    background: #0d9668;
}

.scroll-section {
    margin-top: 4rem;
    opacity: 0.7;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.scroll-keys {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.key {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    font-size: 0.9rem;
}

.key.active {
    background: rgba(16, 185, 129, 0.2);
    border-color: var(--primary-color);
}

.settings-cog {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 3;
}

.settings-cog:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Welcome Section - Overlapping Design */
.welcome-section {
    position: relative;
    z-index: 10;
    margin-top: -150px;
    padding: 0 0 6rem 0;
    pointer-events: none;
}

.welcome-card {
    background: linear-gradient(135deg, rgba(26, 58, 46, 0.98) 0%, rgba(10, 77, 60, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(16, 185, 129, 0.2);
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.welcome-center {
    flex: 1;
    text-align: center;
}

.welcome-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.welcome-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 0;
}

.welcome-btn-left,
.welcome-btn-right {
    flex-shrink: 0;
}

.btn-green {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.2);
    white-space: nowrap;
}

.btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    background: #0d9668;
}

.btn-outline {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.btn-outline:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.15);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--primary-color);
    font-weight: 600;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: 8rem 0 12rem 0;
    background: #000000;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.15);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.feature-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.feature-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.feature-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    background: rgba(16, 185, 129, 0.15);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.feature-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-image {
    position: relative;
    margin-top: 2rem;
}

.game-card {
    position: relative;
    z-index: 5;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    transform: translateY(80px);
}

.game-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.game-stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.2rem 3rem;
    background: rgba(10, 14, 20, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.game-stat {
    text-align: center;
}

.game-stat h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.game-stat p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Blog Section */
.blog-section {
    padding: 6rem 0;
    background: #000000;
}


/* Blog ve FAQ section-header'ı ortala */
.blog-section .section-header,
.faq-section .section-header {
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 4rem;
}

.blog-section .section-title,
.faq-section .section-title,
.blog-section .section-description,
.faq-section .section-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.blog-card {
    display: flex;
    flex-direction: row;
    background: transparent;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    gap: 2rem;
}

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

.blog-image {
    position: relative;
    width: 340px;
    min-height: 220px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 15px;
}

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

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.blog-content p {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: #000000;
}

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

.faq-item {
    background: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

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

.faq-question i {
    transition: transform 0.3s;
    color: var(--primary-color);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.btn-support {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--primary-color);
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 3rem;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.btn-support:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

/* Discord Section */
.discord-section {
    padding: 6rem 0;
    background: #000000;
    text-align: center;
}

.discord-content {
    max-width: 1000px;
    margin: 0 auto;
}

.btn-discord-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #5865F2;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 3rem 0;
    transition: all 0.3s;
}

.btn-discord-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.4);
}

.discord-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.discord-feature {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: left;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.discord-feature:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.discord-icon {
    background: rgba(16, 185, 129, 0.15);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.discord-icon i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.discord-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.discord-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #000000;
    padding: 2.2rem 0 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.footer-logo i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.footer-logo-img {
    max-width: 50%;
    height: auto;
}

.footer-shell {
    max-width: 950px;
    margin: 0 auto;
}

.footer-brand-header {
    display: flex;
    justify-content: center;
    margin-bottom: 1.6rem;
}

.footer-logo-centered {
    justify-content: center;
    margin-bottom: 0;
}

.footer-about-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.25rem 1.3rem;
    margin-bottom: 2rem;
}

.footer-about-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.9rem;
    color: #ffffff;
}

.footer-about-card p {
    color: #d1d5db;
    line-height: 1.7;
    font-size: 0.96rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2.2rem;
}

.footer-column h4 {
    font-size: 0.98rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    padding-bottom: 0.45rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 999px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    gap: 1rem;
}

.footer-meta-pills {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-meta-pill {
    background: #1f1f1f;
    color: #f3f4f6;
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 700;
    font-size: 0.88rem;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.footer-social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1f1f1f;
    color: #f4f4f5;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.footer-social-icon:hover {
    transform: translateY(-2px);
    color: var(--primary-color);
    border-color: rgba(16, 185, 129, 0.35);
}

.footer-copyright {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-powered {
    margin-top: 0.55rem;
}

.footer-powered strong {
    color: #ffffff;
}

.footer-copyright p {
    margin: 0.3rem 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-image {
        order: -1;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .blog-grid {
        max-width: 100%;
    }
    
    .discord-features {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-description br {
        display: none;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 3rem;
    }
    
    .stat h2 {
        font-size: 3rem;
    }
    
    .stat p {
        font-size: 0.9rem;
    }
    
    .blog-grid {
        max-width: 100%;
    }
    
    .blog-card {
        flex-direction: column;
    }
    
    .blog-image {
        width: 100%;
        min-height: 200px;
    }
    
    .welcome-section {
        margin-top: -80px;
        padding: 0 0 3rem 0;
    }
    
    .welcome-card {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .welcome-title {
        font-size: 1.8rem;
    }
    
    .welcome-description {
        font-size: 1rem;
    }
    
    .btn-green,
    .btn-outline {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat h2 {
        font-size: 2.5rem;
    }
    
    .stat p {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .welcome-section {
        margin-top: -50px;
    }
    
    .welcome-card {
        padding: 1.2rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .welcome-title {
        font-size: 1.5rem;
    }
    
    .welcome-description {
        font-size: 0.9rem;
    }
    
    .welcome-description br {
        display: none;
    }
    
    .btn-green,
    .btn-outline {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-discord,
    .btn-discord-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Shop Page Styles */
.shop-hero {
    background: linear-gradient(135deg, #0a0e13 0%, #1a1f2e 100%);
    padding: 8rem 0 4rem;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.shop-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(16, 185, 129, 0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.shop-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.shop-hero-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.shop-hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.shop-search-section {
    background: var(--darker-bg);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.shop-search-form {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
    max-width: 500px;
}

.search-input-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.search-input-wrapper input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-search,
.btn-clear {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-search {
    background: var(--primary-color);
    color: white;
}

.btn-search:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-clear {
    background: var(--card-bg);
    color: white;
    border: 1px solid var(--border-color);
}

.btn-clear:hover {
    border-color: var(--primary-color);
}

.shop-stats {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.shop-stats i {
    color: var(--primary-color);
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.view-buttons {
    display: flex;
    gap: 0.5rem;
}

/* Category Buttons */
.category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: var(--darker-bg);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}

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

.category-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.category-btn i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .category-buttons {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .shop-toolbar {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .view-buttons {
        justify-content: center;
    }
}

.shop-products-section {
    padding: 4rem 0;
    min-height: 60vh;
}

.store-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.store-product-card {
    background: linear-gradient(180deg, #0b0f16 0%, #090c12 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.store-product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.store-product-media {
    position: relative;
    width: 100%;
    height: 210px;
    background: #090d14;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.store-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.03);
}

.store-product-license {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    background: #34f5a0;
    color: #021a10;
    font-size: 0.78rem;
    font-weight: 500;
}

.store-product-content {
    padding: 1rem 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.store-product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
}

.store-product-name {
    font-size: 1.9rem;
    line-height: 1;
    margin: 0;
    font-weight: 600;
    color: #ffffff;
}

.store-product-price {
    color: #f4f6fb;
    font-size: 1.05rem;
    font-weight: 500;
    white-space: nowrap;
    padding-top: 0.2rem;
}

.store-product-description {
    color: #9ba3af;
    font-size: 0.95rem;
    min-height: 2.9rem;
    margin: 0;
}

.store-product-tags {
    display: flex;
    gap: 0.45rem;
}

.store-product-tag {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.11);
    color: #c9ced7;
    padding: 0.22rem 0.55rem;
    border-radius: 7px;
    font-size: 0.76rem;
    font-weight: 400;
}

.store-product-actions {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.15rem;
    align-items: stretch;
}

.store-detail-link {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #0f141d;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #d8dde6;
    flex-shrink: 0;
}

.store-detail-link:hover {
    border-color: rgba(16, 185, 129, 0.6);
    color: #36f4a2;
}

.store-purchase-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 0.35rem;
}

.store-add-cart {
    flex: 1;
    width: 100%;
    height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #121417;
    color: #f0f4fa;
    font-size: 1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.store-add-cart:hover {
    background: #36f4a2;
    color: #031a11;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(54, 244, 162, 0.18);
}

.store-add-cart::after {
    content: '';
    position: absolute;
    top: 0;
    left: -130%;
    width: 90%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
}

.store-add-cart.cart-animate {
    animation: storeCartPop 0.45s ease;
}

.store-add-cart.cart-animate::after {
    animation: storeCartShine 0.6s ease;
}

@keyframes storeCartPop {
    0% { transform: scale(1); }
    40% { transform: scale(0.97); }
    75% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

@keyframes storeCartShine {
    0% { left: -130%; }
    100% { left: 140%; }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.product-no-image {
    width: 100%;
    height: 100%;
    background: var(--darker-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--text-secondary);
}

.product-no-image-hidden {
    display: none;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-view-product {
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-view-product:hover {
    background: #059669;
    transform: translateY(-2px);
}

.product-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-buy {
    padding: 0.7rem 1.2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-buy:hover {
    background: #059669;
    transform: translateY(-2px);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.page-link {
    padding: 0.7rem 1.2rem;
    background: var(--card-bg);
    color: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-link:hover,
.page-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Store Categories */
.store-categories {
    padding: 4rem 0;
    background: #000000;
}

.store-header {
    text-align: center;
    margin-bottom: 3rem;
}

.store-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.store-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 0;
    padding: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .subnav-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .subnav-wrapper {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .subnav-right {
        width: 100%;
        justify-content: flex-end;
    }

    .store-hero-title {
        font-size: 1.8rem;
    }
}

.category-card {
    background: #0a0e1a;
    border: 1px solid #2d3f52;
    border-radius: 12px;
    overflow: visible;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: #4a5f75;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.category-image {
    width: 100%;
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.category-image-vip {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.category-image-skyblock {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.category-image-survival {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.category-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.category-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    background: #0a0e1a;
}

.category-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: white;
    letter-spacing: 0;
}

.category-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #7a8a9f;
    font-size: 0.85rem;
}

.stat i {
    color: #00d4ff;
    font-size: 0.9rem;
}

.btn-category-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: transparent;
    color: white;
    border: 1px solid #3d4d62;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Auth Pages */
.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 80px;
    background: #000000;
}

.auth-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-card {
    background: rgba(20, 25, 40, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: fit-content;
    margin: 0 auto 1.5rem;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: #3b82f6;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.auth-badge i {
    font-size: 0.9rem;
}

.auth-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

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

.form-group input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.9rem 1.2rem;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-auth-submit {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.95rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    letter-spacing: 0.3px;
}

.btn-auth-submit:hover {
    background: #2563eb;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
    transform: translateY(-2px);
}

.btn-auth-submit:active {
    transform: translateY(0);
}

.auth-footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.auth-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: #60a5fa;
    text-decoration: underline;
}

.auth-message {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

.auth-message.success {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.auth-message.error {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ====== Profile Page Styles ====== */

.profile-container {
    min-height: 100vh;
    padding: 2rem 0;
    background: var(--darker-bg);
}

.profile-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.profile-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.profile-breadcrumb a:hover {
    color: #059669;
}

.profile-breadcrumb .active {
    color: var(--text-primary);
}

.profile-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
}

/* Sidebar */
.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
}

.profile-avatar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.profile-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    object-fit: cover;
}

.profile-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.profile-role-badge {
    display: inline-block;
    background: #ef4444;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Profile Navigation */
.profile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.profile-nav-section {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.profile-nav-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 1rem 1rem 0.5rem;
    letter-spacing: 0.5px;
}

.profile-nav-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    font-size: 0.95rem;
}

.profile-nav-item:hover {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-color);
}

.profile-nav-item.active {
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    font-weight: 600;
}

.profile-nav-item i {
    width: 20px;
    text-align: center;
}

.profile-nav-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.5rem 0;
}

/* Main Content */
.profile-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.profile-main h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.profile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    gap: 2rem;
}

.profile-header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.profile-header-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    object-fit: cover;
}

.profile-header-info h2 {
    font-size: 1.4rem;
    margin: 0;
}

.profile-header-email {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0.3rem 0 0 0;
}

/* Info Cards Grid */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.profile-info-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

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

.profile-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 10px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.profile-info-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.profile-info-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.profile-info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Profile Sections */
.profile-section {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.section-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
}

.profile-table {
    width: 100%;
    border-collapse: collapse;
}

.profile-table thead th {
    background: rgba(16, 185, 129, 0.1);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.profile-table tbody td {
    padding: 1rem;
    border-bottom: 1px solid rgba(45, 55, 72, 0.5);
    color: var(--text-primary);
}

.profile-table tbody tr:hover {
    background: rgba(16, 185, 129, 0.05);
}

.profile-table tbody tr:last-child td {
    border-bottom: none;
}

.link-primary {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.link-primary:hover {
    color: #059669;
    text-decoration: underline;
}

.status-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-open {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.status-closed {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.status-pending {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

/* Forms */
.profile-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-control {
    padding: 0.8rem 1rem;
    background: rgba(26, 31, 46, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(26, 31, 46, 0.8);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-control:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Empty State */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-secondary);
}

.empty-state i {
    font-size: 3rem;
    color: var(--border-color);
    opacity: 0.5;
}

.empty-state p {
    font-size: 1rem;
    margin: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: rgba(16, 185, 129, 0.25);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* ====== Profile Layout (Sidebar + Main) ====== */

.profile-page {
    min-height: 100vh;
    padding: 6rem 0 4rem;
}

/* Breadcrumb */
.profile-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.profile-breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.profile-breadcrumb a:hover {
    color: var(--text-primary);
}

.profile-breadcrumb span {
    color: var(--text-secondary);
}

.profile-breadcrumb .bc-active {
    color: var(--primary-color);
}

/* Layout Grid */
.profile-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: start;
}

/* ====== Sidebar ====== */
.profile-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-user-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.sidebar-avatar-wrapper {
    margin-bottom: 1rem;
}

.sidebar-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #3b82f6;
    object-fit: cover;
}

.sidebar-username {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3b82f6;
    margin: 0 0 0.5rem 0;
}

.sidebar-role-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #ef4444;
    color: white;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.sidebar-role-user {
    background: #3b82f6;
}

/* Sidebar Nav */
.sidebar-nav {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.sidebar-nav-group {
    padding: 0.5rem 0;
}

.sidebar-nav-group + .sidebar-nav-group {
    border-top: 1px solid var(--border-color);
}

.sidebar-nav-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.2rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    margin: 0;
}

.sidebar-nav-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 1.2rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.sidebar-nav-link:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.08);
}

.sidebar-nav-link.active {
    color: white;
    background: #3b82f6;
    border-left-color: #3b82f6;
    font-weight: 600;
}

.sidebar-nav-link i {
    width: 18px;
    text-align: center;
    font-size: 0.9rem;
}

.sidebar-admin-link {
    color: #f59e0b !important;
}

.sidebar-admin-link:hover {
    background: rgba(245, 158, 11, 0.1) !important;
    color: #f59e0b !important;
    border-left-color: #f59e0b !important;
}

/* ====== Main Content ====== */
.profile-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 0;
}

/* User Header Card */
.profile-user-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem 2rem;
}

.user-header-left {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.user-header-avatar {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.user-header-info h2 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--text-primary);
}

.user-header-info p {
    margin: 0.2rem 0 0 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.btn-profile-edit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #3b82f6;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.btn-profile-edit:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

/* Info Cards Grid */
.profile-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.profile-info-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
}

.pinfo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 12px;
    color: #3b82f6;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.pinfo-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.pinfo-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.pinfo-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Profile Card Sections (Tables, etc.) */
.profile-card-section {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.card-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.card-section-header h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

.btn-see-all {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.btn-see-all:hover {
    color: #3b82f6;
}

.card-section-body {
    padding: 0;
}

/* Profile Data Table */
.profile-data-table {
    width: 100%;
    border-collapse: collapse;
}

.profile-data-table thead th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-bottom: 1px solid var(--border-color);
}

.profile-data-table tbody td {
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(45, 55, 72, 0.3);
}

.profile-data-table tbody tr:last-child td {
    border-bottom: none;
}

.profile-data-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.03);
}

.td-id {
    font-weight: 600;
    color: #3b82f6;
}

.td-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.td-link:hover {
    text-decoration: underline;
}

.td-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.td-badge-open {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.td-badge-success {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.td-badge-pending {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.td-badge-danger {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.td-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.td-action:hover {
    background: #3b82f6;
    color: white;
}

/* Credit History Specific */
.td-credit-plus {
    color: #22c55e;
    font-weight: 600;
}

.td-credit-minus {
    color: #ef4444;
    font-weight: 600;
}

/* Empty State Mini */
.empty-state-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-secondary);
}

.empty-state-mini i {
    font-size: 2.5rem;
    opacity: 0.3;
}

.empty-state-mini p {
    margin: 0;
}

/* Settings Form */
.settings-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.settings-field {
    margin-bottom: 1.5rem;
}

.settings-field label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.settings-input {
    width: 100%;
    padding: 0.85rem 1rem;
    background: #0a0e13;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.settings-input::placeholder {
    color: var(--text-secondary);
}

.settings-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.settings-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.settings-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.btn-settings-save {
    background: #3b82f6;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-settings-save:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .settings-row {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .profile-layout {
        grid-template-columns: 260px 1fr;
    }
}

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

    .profile-sidebar {
        position: static;
    }

    .profile-info-grid {
        grid-template-columns: 1fr;
    }

    .profile-user-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .card-section-header {
        padding: 1rem 1.2rem;
    }

    .profile-data-table thead th,
    .profile-data-table tbody td {
        padding: 0.8rem 0.8rem;
        font-size: 0.85rem;
    }
}

/* Responsive Design */
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(16, 185, 129, 0.05) 100%);
}

/* Profile Header */
.profile-header-section {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.profile-header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.profile-large-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    object-fit: cover;
    flex-shrink: 0;
}

.profile-header-info {
    flex: 1;
}

.profile-username {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.profile-email {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0.3rem 0 0.8rem 0;
}

.badge-admin {
    display: inline-block;
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Profile Stats */
.profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.5px;
}

.stat-value {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

/* Profile Tabs */
.profile-tabs {
    display: flex;
    gap: 1rem;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.tab-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
    bottom: -1rem;
}

.tab-link:hover {
    color: var(--primary-color);
}

.tab-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Profile Content */
.profile-content {
    animation: fadeIn 0.3s ease;
}

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

/* Profile Section */
.profile-section {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

.profile-section .section-header {
    margin-bottom: 2rem;
}

.profile-section .section-header h2 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin: 0;
}

/* Info Cards Grid */
.profile-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Settings Form */
.settings-form {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(26, 31, 46, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(26, 31, 46, 0.8);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-divider {
    height: 1px;
    background: var(--border-color);
    margin: 2rem 0;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.empty-state i {
    font-size: 3rem;
    color: var(--border-color);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state p {
    font-size: 1rem;
    margin: 0 0 1.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-header-section {
        padding: 1.5rem;
    }

    .profile-header-content {
        flex-direction: column;
        text-align: center;
    }

    .profile-large-avatar {
        width: 100px;
        height: 100px;
    }

    .profile-tabs {
        gap: 0.5rem;
        padding: 0;
    }

    .tab-link {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        bottom: 0;
        border-bottom: 2px solid transparent;
        margin-bottom: 0;
    }

    .profile-stats {
        grid-template-columns: 1fr;
    }

    .profile-section {
        padding: 1.5rem;
    }

    .profile-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-wrapper {
        grid-template-columns: 1fr;
    }

    .profile-sidebar {
        position: fixed;
        left: -280px;
        top: 0;
        width: 280px;
        height: 100vh;
        background: var(--darker-bg);
        z-index: 999;
        transition: left 0.3s ease;
        overflow-y: auto;
        padding-top: 80px;
    }

    .profile-sidebar.active {
        left: 0;
    }

    .profile-grid {
        grid-template-columns: 1fr;
    }

    .profile-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .table-responsive {
        font-size: 0.85rem;
    }

    .profile-table thead th,
    .profile-table tbody td {
        padding: 0.75rem 0.5rem;
    }
}

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

/* Responsive */
@media (max-width: 480px) {
    .auth-card {
        padding: 2rem 1.5rem;
    }

    .auth-header h1 {
        font-size: 1.8rem;
    }

    .auth-badge {
        font-size: 0.8rem;
    }
}

.btn-category-view:hover {
    background: transparent;
    border-color: #5a6d85;
    color: white;
    transform: translateY(-2px);
}

.btn-category-view i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

/* Store Page Specific (legacy - overridden below) */

/* Store Sub Navbar */
.store-subnav {
    background: rgba(10, 14, 26, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.8rem 0;
    position: sticky;
    top: 60px;
    z-index: 99;
    backdrop-filter: blur(10px);
}

.subnav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.subnav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.subnav-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: white;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 700;
}

.subnav-brand i {
    color: #3b82f6;
}

.subnav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.subnav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.subnav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.06);
}

.subnav-link.active {
    color: white;
    background: #3b82f6;
}

.subnav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.subnav-cart {
    position: relative;
    color: var(--text-secondary);
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.2s;
}

.subnav-cart:hover {
    color: white;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #3b82f6;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subnav-wallet {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.subnav-wallet i {
    color: #3b82f6;
}

/* Store Hero Section */
.store-hero-section {
    padding: 4rem 0 2rem;
    text-align: center;
}

.store-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.store-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    color: #3b82f6;
    font-size: 0.9rem;
    font-weight: 600;
}

.store-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.store-hero-line {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state i {
    font-size: 5rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* Shop View Buttons */
.btn-view {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--card-bg);
    color: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-view:hover,
.btn-view.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Product Category Badge */
.product-category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(16, 185, 129, 0.9);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    z-index: 2;
}

/* Product Location Badge */
.product-location-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(59, 130, 246, 0.9);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    z-index: 2;
    cursor: help;
}

/* Map View */
.map-view-container {
    min-height: 70vh;
}

.map-wrapper {
    position: relative;
    width: 1000px;
    height: 1000px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.gta-map {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#map-markers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.map-marker {
    position: absolute;
    width: 30px;
    height: 30px;
    margin-left: -15px;
    margin-top: -30px;
    pointer-events: all;
    cursor: pointer;
    z-index: 10;
    text-decoration: none;
    color: inherit;
    display: block;
}

.map-marker i {
    font-size: 30px;
    color: #ef4444;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    transition: all 0.3s;
}

.map-marker:hover i {
    transform: scale(1.2);
    color: #dc2626;
}

.marker-popup {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.map-marker:hover .marker-popup {
    opacity: 1;
}

.marker-popup::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(0, 0, 0, 0.95);
}

/* Shop Responsive */
@media (max-width: 768px) {
    .shop-hero {
        padding: 6rem 0 3rem;
    }
    
    .shop-hero-title {
        font-size: 2rem;
    }
    
    .shop-hero-description {
        font-size: 1rem;
    }
    
    .shop-search-form {
        flex-direction: column;
    }
    
    .search-input-wrapper {
        max-width: 100%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .store-products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .store-product-name {
        font-size: 1.55rem;
    }

    .store-product-description {
        min-height: auto;
    }
    
    .product-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-buy {
        justify-content: center;
    }
    
    .map-wrapper {
        width: 100%;
        height: 500px;
    }
    
    .map-marker {
        width: 25px;
        height: 25px;
    }
    
    .map-marker i {
        font-size: 25px;
    }
}

/* ====== Orders Page Styles ====== */

.orders-page {
    min-height: 100vh;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(16, 185, 129, 0.05) 100%);
}

/* Orders Header */
.orders-header {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
}

.orders-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.orders-header-left {
    flex: 1;
}

.orders-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.orders-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

/* Orders Stats */
.orders-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Orders Section */
.orders-section {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.orders-section .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.orders-section .section-header h2 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin: 0;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.5rem 1.2rem;
    background: rgba(26, 31, 46, 0.5);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Orders Table */
.orders-table-wrapper {
    overflow-x: auto;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table thead th {
    background: rgba(16, 185, 129, 0.1);
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.orders-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
}

.orders-table tbody tr:hover {
    background: rgba(16, 185, 129, 0.05);
}

.orders-table tbody td {
    padding: 1.2rem;
    color: var(--text-primary);
}

.order-id {
    font-weight: 600;
    color: var(--primary-color);
}

.order-amount {
    font-weight: 600;
    color: var(--text-primary);
}

.order-status {
    display: flex;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-completed {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.status-pending {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.status-cancelled {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.order-date {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.btn-view {
    background: rgba(16, 185, 129, 0.1);
    border: none;
    color: var(--primary-color);
    width: 36px;
    height: 36px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-view:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

/* Orders Grid */
.orders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.order-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.order-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
}

.order-card-header {
    background: rgba(16, 185, 129, 0.05);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-card-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.card-status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.order-card-body {
    padding: 1.5rem;
}

.order-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.item-details {
    flex: 1;
}

.item-details h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
    font-size: 1rem;
}

.item-price {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0.3rem 0;
}

.item-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0.5rem 0 0 0;
}

.order-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
}

.info-value {
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.empty-state i {
    font-size: 3rem;
    color: var(--border-color);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state h3 {
    color: var(--text-primary);
    margin: 1rem 0 0.5rem 0;
}

.empty-state p {
    margin: 0 0 1.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .orders-header {
        padding: 1.5rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .filter-buttons {
        width: 100%;
        flex-wrap: wrap;
    }

    .orders-table {
        font-size: 0.85rem;
    }

    .orders-table thead th,
    .orders-table tbody td {
        padding: 0.8rem 0.5rem;
    }

    .orders-grid {
        grid-template-columns: 1fr;
    }

    .order-item {
        flex-direction: column;
        text-align: center;
    }

    .item-image {
        width: 100%;
        height: 180px;
        margin: 0 auto;
    }
}

/* ========== STORE - Redesign ========== */

/* Store Page */
.store-page {
    min-height: 100vh;
    padding-bottom: 4rem;
}

/* Hero Banner */
.store-hero-banner {
    position: relative;
    background: url('../img/hero-bg.jpg') center center / cover no-repeat;
    padding: 5rem 0 3rem;
    text-align: center;
    overflow: hidden;
}

.store-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(10,14,26,0.95) 100%);
    z-index: 0;
}

.store-hero-banner .container {
    position: relative;
    z-index: 1;
}

.store-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 0.8rem;
    letter-spacing: -0.5px;
}

.store-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.store-hero-breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.store-hero-breadcrumb a:hover {
    color: white;
}

.store-hero-breadcrumb span {
    color: rgba(255,255,255,0.35);
}

.store-hero-breadcrumb .bc-active {
    color: rgba(255,255,255,0.8);
}

/* User Welcome Card */
.store-user-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--card-bg, #0d1117);
    border: 1px solid var(--border-color, #1e2d3d);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.store-user-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.store-user-avatar {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid #2d3f52;
}

.store-user-welcome {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #3b82f6;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.store-user-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0 0 4px;
}

.store-user-role {
    display: inline-block;
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 4px;
    letter-spacing: 0.3px;
}

.store-user-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.store-user-balance-wrap {
    text-align: right;
}

.store-user-balance-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.store-user-balance {
    font-size: 1.8rem;
    font-weight: 800;
    color: #22c55e;
    letter-spacing: -0.5px;
}

.store-user-balance .balance-currency {
    font-size: 1rem;
    font-weight: 600;
    margin-right: 2px;
    vertical-align: top;
    line-height: 1.8;
}

.store-add-credit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #3b82f6;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.store-add-credit-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

/* Store Layout: Sidebar + Content */
.store-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Store Sidebar */
.store-sidebar {
    position: sticky;
    top: 100px;
}

.store-nav-section {
    background: var(--card-bg, #0d1117);
    border: 1px solid var(--border-color, #1e2d3d);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.store-nav-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 1rem;
}

.store-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.store-nav-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.store-nav-link i:first-child {
    width: 18px;
    text-align: center;
    font-size: 0.85rem;
}

.store-nav-arrow {
    margin-left: auto;
    font-size: 0.65rem;
    opacity: 0.4;
    width: auto !important;
}

.store-nav-link:hover {
    background: rgba(59, 130, 246, 0.08);
    color: rgba(255,255,255,0.85);
}

.store-nav-link.active {
    background: rgba(59, 130, 246, 0.12);
    color: #3b82f6;
    font-weight: 600;
}

.store-nav-link.active .store-nav-arrow {
    opacity: 0.7;
}

/* Sidebar Sub-navigation (categories under server) */
.store-nav-sub {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 1rem;
    margin-bottom: 4px;
    border-left: 2px solid rgba(59, 130, 246, 0.2);
    margin-left: 1.5rem;
}

.store-nav-sublink {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.store-nav-sublink i {
    width: 14px;
    text-align: center;
    font-size: 0.7rem;
}

.store-nav-sublink:hover {
    background: rgba(59, 130, 246, 0.06);
    color: rgba(255,255,255,0.75);
}

.store-nav-sublink.active {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    font-weight: 600;
}

/* Nav Divider */
.store-nav-divider {
    height: 1px;
    background: var(--border-color, #1e2d3d);
    margin: 6px 0;
}

/* Support Help Card */
.store-nav-help-card {
    background: var(--card-bg, #0d1117);
    border: 1px solid var(--border-color, #1e2d3d);
    border-radius: 12px;
    padding: 1.3rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.store-nav-help-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(59, 130, 246, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1rem;
    flex-shrink: 0;
}

.store-nav-help-text strong {
    display: block;
    font-size: 0.85rem;
    color: white;
    margin-bottom: 4px;
}

.store-nav-help-text a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.store-nav-help-text a:hover {
    color: #60a5fa;
}

/* Server Grid (main content - first level) */
.store-server-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.store-server-card {
    display: flex;
    align-items: center;
    background: var(--card-bg, #0d1117);
    border: 1px solid var(--border-color, #1e2d3d);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.store-server-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.store-server-image {
    width: 140px;
    height: 100px;
    flex-shrink: 0;
    overflow: hidden;
}

.store-server-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.store-server-card:hover .store-server-image img {
    transform: scale(1.08);
}

.store-server-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a2332 0%, #0d1117 100%);
    color: #3b82f6;
    font-size: 2rem;
}

.store-server-info {
    flex: 1;
    padding: 0 1.2rem;
}

.store-server-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.12);
    color: #60a5fa;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.store-server-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.store-server-arrow {
    padding: 0 1.5rem;
    color: rgba(255,255,255,0.25);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.store-server-card:hover .store-server-arrow {
    color: #3b82f6;
    transform: translateX(4px);
}

/* Store Main Content */
.store-main-content {
    min-height: 400px;
}

.store-content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.store-content-title {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.title-bar {
    width: 4px;
    height: 22px;
    background: #3b82f6;
    border-radius: 2px;
    display: inline-block;
}

/* Category Row Cards */
.store-cat-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.store-cat-row {
    display: flex;
    align-items: center;
    background: var(--card-bg, #0d1117);
    border: 1px solid var(--border-color, #1e2d3d);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.store-cat-row:hover {
    border-color: #3b82f6;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.store-cat-row-image {
    width: 140px;
    height: 100px;
    flex-shrink: 0;
    overflow: hidden;
}

.store-cat-row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.store-cat-row:hover .store-cat-row-image img {
    transform: scale(1.08);
}

.store-cat-row-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a2332 0%, #0d1117 100%);
    color: #3b82f6;
    font-size: 2rem;
}

.store-cat-row-info {
    flex: 1;
    padding: 0 1.2rem;
}

.store-cat-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.12);
    color: #60a5fa;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.store-cat-row-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.store-cat-row-arrow {
    padding: 0 1.5rem;
    color: rgba(255,255,255,0.25);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.store-cat-row:hover .store-cat-row-arrow {
    color: #3b82f6;
    transform: translateX(4px);
}

/* Empty State */
.store-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--card-bg, #0d1117);
    border: 1px solid var(--border-color, #1e2d3d);
    border-radius: 12px;
}

.store-empty-state i {
    font-size: 3rem;
    color: rgba(255,255,255,0.15);
    margin-bottom: 1rem;
}

.store-empty-state p {
    color: #7a8a9f;
    font-size: 1rem;
    margin: 0;
}

/* Product Grid */
.store-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.store-product-card {
    background: var(--card-bg, #0d1117);
    border: 1px solid var(--border-color, #1e2d3d);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.store-product-card:hover {
    transform: translateY(-3px);
    border-color: #3b82f6;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
}

.store-product-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.3s ease;
}

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

.store-product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a2332 0%, #0d1117 100%);
    color: rgba(255,255,255,0.2);
    font-size: 2.5rem;
}

.store-product-info {
    padding: 1rem 1.2rem;
    flex: 1;
}

.store-product-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    margin: 0 0 0.3rem;
}

.store-product-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #22c55e;
    margin: 0;
}

.store-product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    margin: 0 1rem 1rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.store-product-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

/* Store Responsive */
@media (max-width: 1024px) {
    .store-layout {
        grid-template-columns: 1fr;
    }
    .store-sidebar {
        position: static;
    }
    .store-nav-section {
        padding: 1rem;
    }
    .store-nav-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.3rem;
    }
    .store-nav-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    .store-nav-arrow {
        display: none;
    }
    .store-nav-sub {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.3rem;
        padding-left: 0;
        margin-left: 0;
        border-left: none;
        margin-bottom: 0;
    }
    .store-nav-sublink {
        padding: 0.4rem 0.7rem;
        font-size: 0.8rem;
    }
    .store-nav-divider {
        display: none;
    }
    .store-cat-list,
    .store-server-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .store-hero-title {
        font-size: 1.8rem;
    }
    .store-user-card {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 1.5rem;
    }
    .store-user-left {
        flex-direction: column;
    }
    .store-user-right {
        flex-direction: column;
        gap: 1rem;
    }
    .store-user-balance-wrap {
        text-align: center;
    }
    .store-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .store-cat-row-image,
    .store-server-image {
        width: 100px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .store-product-grid {
        grid-template-columns: 1fr;
    }
    .store-hero-banner {
        padding: 4rem 0 2rem;
    }
}

/* ========== Product Detail Page ========== */

/* Alert Messages */
.pd-alert {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1.5rem;
}

.pd-alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #22c55e;
}

.pd-alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #ef4444;
}

/* Product Detail Layout */
.pd-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

/* Image Section */
.pd-image-card {
    background: var(--card-bg, #0d1117);
    border: 1px solid var(--border-color, #1e2d3d);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.pd-main-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    display: block;
    padding: 1.5rem;
}

.pd-image-placeholder {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a2332 0%, #0d1117 100%);
    color: rgba(255,255,255,0.15);
    font-size: 5rem;
}

/* Info Section */
.pd-info-card {
    background: var(--card-bg, #0d1117);
    border: 1px solid var(--border-color, #1e2d3d);
    border-radius: 12px;
    padding: 2rem;
}

.pd-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.8rem;
    border-radius: 6px;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.pd-product-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    margin: 0 0 1.2rem;
    line-height: 1.3;
}

/* Price Block */
.pd-price-block {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.2rem;
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 10px;
}

.pd-price {
    font-size: 2rem;
    font-weight: 800;
    color: #22c55e;
    letter-spacing: -0.5px;
}

.pd-price-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(34, 197, 94, 0.7);
}

/* Meta Grid */
.pd-meta-grid {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.pd-meta-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 1rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
}

.pd-meta-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.pd-meta-label i {
    width: 16px;
    text-align: center;
    color: #3b82f6;
}

.pd-meta-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.pd-stock-in-stock {
    color: #22c55e;
}

.pd-stock-out-of-stock {
    color: #ef4444;
}

/* Buy Form */
.pd-buy-form {
    margin-top: 0.5rem;
}

.pd-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.pd-buy-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.pd-btn-disabled {
    background: #374151 !important;
    color: rgba(255,255,255,0.4) !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

.pd-balance-info {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.7rem;
}

.pd-balance-info strong {
    color: rgba(255,255,255,0.7);
}

/* Description Card */
.pd-description-card {
    background: var(--card-bg, #0d1117);
    border: 1px solid var(--border-color, #1e2d3d);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.pd-section-title {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1.2rem;
}

.pd-description-body {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
}

/* Related Products */
.pd-related-section {
    margin-top: 2.5rem;
    padding-bottom: 2rem;
}

/* Product Detail Responsive */
@media (max-width: 768px) {
    .pd-layout {
        grid-template-columns: 1fr;
    }
    .pd-main-image,
    .pd-image-placeholder {
        height: 280px;
    }
    .pd-product-name {
        font-size: 1.3rem;
    }
    .pd-price {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .pd-info-card {
        padding: 1.5rem;
    }
    .pd-description-card {
        padding: 1.5rem;
    }
}

/* ========== Support / Ticket System ========== */

.support-page {
    min-height: 100vh;
    padding-bottom: 4rem;
}

/* Page Header */
.sp-page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.sp-page-header-left {
    flex: 1;
}

.sp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.sp-breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.sp-breadcrumb a:hover {
    color: rgba(255,255,255,0.8);
}

.sp-breadcrumb span {
    color: rgba(255,255,255,0.3);
}

.sp-breadcrumb .bc-active {
    color: white;
    font-weight: 600;
}

.sp-page-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    margin: 0;
}

/* Buttons */
.sp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sp-btn-primary:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.35);
}

.sp-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: transparent;
    color: white;
    border: 1px solid var(--border-color, #1e2d3d);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sp-btn-outline:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.sp-btn-sm {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sp-btn-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.sp-btn-danger:hover {
    background: rgba(239, 68, 68, 0.2);
}

.sp-btn-success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.sp-btn-success:hover {
    background: rgba(34, 197, 94, 0.2);
}

/* Alert */
.sp-alert {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.sp-alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #ef4444;
}

/* Table Card */
.sp-table-card {
    background: var(--card-bg, #0d1117);
    border: 1px solid var(--border-color, #1e2d3d);
    border-radius: 12px;
    overflow: hidden;
}

.sp-table-wrapper {
    overflow-x: auto;
}

.sp-table {
    width: 100%;
    border-collapse: collapse;
}

.sp-table thead th {
    background: rgba(255,255,255,0.03);
    padding: 1rem 1.2rem;
    text-align: left;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-color, #1e2d3d);
}

.sp-table tbody tr {
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.2s;
}

.sp-table tbody tr:last-child {
    border-bottom: none;
}

.sp-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.03);
}

.sp-table tbody td {
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.sp-td-id {
    font-weight: 600;
    color: rgba(255,255,255,0.4) !important;
    width: 60px;
}

.sp-td-title a {
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.sp-td-title a:hover {
    color: #3b82f6;
}

.sp-td-date {
    color: rgba(255,255,255,0.4) !important;
    font-size: 0.85rem;
}

/* Category Badge */
.sp-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.06);
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

.sp-cat-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f59e0b;
    display: inline-block;
}

/* Status Badge */
.sp-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
}

.sp-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.sp-status-open {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.sp-status-open .sp-status-dot {
    background: #3b82f6;
}

.sp-status-answered {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.sp-status-answered .sp-status-dot {
    background: #22c55e;
}

.sp-status-closed {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.08);
}

.sp-status-closed .sp-status-dot {
    background: rgba(255,255,255,0.3);
}

/* Action Buttons */
.sp-td-actions {
    display: flex;
    gap: 0.4rem;
}

.sp-action-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.sp-action-view {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.sp-action-view:hover {
    background: rgba(59, 130, 246, 0.2);
}

.sp-action-close {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.sp-action-close:hover {
    background: rgba(239, 68, 68, 0.2);
}

/* Empty State */
.sp-empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.sp-empty-state i {
    font-size: 3rem;
    color: rgba(255,255,255,0.12);
    margin-bottom: 1rem;
    display: block;
}

.sp-empty-state p {
    color: rgba(255,255,255,0.4);
    font-size: 1rem;
    margin: 0 0 1.5rem;
}

/* ===== Create Ticket Layout ===== */
.sp-create-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: start;
}

.sp-form-card {
    background: var(--card-bg, #0d1117);
    border: 1px solid var(--border-color, #1e2d3d);
    border-radius: 12px;
    padding: 2rem;
}

.sp-form-group {
    margin-bottom: 1.5rem;
}

.sp-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.sp-input,
.sp-select,
.sp-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color, #1e2d3d);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.sp-input::placeholder,
.sp-textarea::placeholder {
    color: rgba(255,255,255,0.25);
}

.sp-input:focus,
.sp-select:focus,
.sp-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.sp-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff40' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.sp-select option {
    background: #0d1117;
    color: white;
}

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

.sp-form-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 0.5rem;
}

.sp-btn-submit {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
}

/* Info Card (sağ panel) */
.sp-info-card {
    background: var(--card-bg, #0d1117);
    border: 1px solid var(--border-color, #1e2d3d);
    border-radius: 12px;
    padding: 2rem;
}

.sp-info-icon {
    color: #3b82f6;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.sp-info-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.6rem;
}

.sp-info-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin: 0 0 1.2rem;
}

.sp-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.sp-info-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
}

.sp-info-list li i {
    color: #22c55e;
    font-size: 0.8rem;
}

.sp-info-btn {
    display: block;
    text-align: center;
    padding: 0.75rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color, #1e2d3d);
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sp-info-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
}

/* ===== Ticket Detail Layout ===== */
.sp-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
}

/* Ticket Info Bar */
.sp-ticket-info-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--card-bg, #0d1117);
    border: 1px solid var(--border-color, #1e2d3d);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
}

.sp-ticket-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.sp-ticket-date {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

.sp-ticket-actions {
    display: flex;
    gap: 0.5rem;
}

/* Messages List */
.sp-messages-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sp-message {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg, #0d1117);
    border: 1px solid var(--border-color, #1e2d3d);
    border-radius: 12px;
    margin-bottom: 0.8rem;
}

.sp-message-admin {
    background: rgba(59, 130, 246, 0.04);
    border-color: rgba(59, 130, 246, 0.12);
}

.sp-message-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.sp-message-content {
    flex: 1;
    min-width: 0;
}

.sp-message-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.6rem;
}

.sp-message-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
}

.sp-admin-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.sp-message-time {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

.sp-message-body {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    word-break: break-word;
}

/* Reply Form */
.sp-reply-form-card {
    background: var(--card-bg, #0d1117);
    border: 1px solid var(--border-color, #1e2d3d);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 0.8rem;
}

.sp-reply-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0 0 1rem;
}

/* Closed Notice */
.sp-closed-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
    margin-top: 0.8rem;
}

/* Detail Sidebar */
.sp-detail-info-card {
    background: var(--card-bg, #0d1117);
    border: 1px solid var(--border-color, #1e2d3d);
    border-radius: 12px;
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.sp-detail-info-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sp-detail-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sp-detail-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sp-detail-info-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

.sp-detail-info-value {
    font-size: 0.85rem;
    color: white;
    font-weight: 600;
}

/* Support Responsive */
@media (max-width: 1024px) {
    .sp-create-layout,
    .sp-detail-layout {
        grid-template-columns: 1fr;
    }
    .sp-detail-info-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .sp-page-header {
        flex-direction: column;
        gap: 1rem;
    }
    .sp-page-title {
        font-size: 1.3rem;
    }
    .sp-table thead th {
        padding: 0.8rem;
        font-size: 0.65rem;
    }
    .sp-table tbody td {
        padding: 0.8rem;
        font-size: 0.82rem;
    }
    .sp-message {
        flex-direction: column;
        gap: 0.6rem;
    }
    .sp-message-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    .sp-ticket-info-bar {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}
