/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #050505;
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Particles Background */
.particles {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    background: linear-gradient(45deg, #facc15, #f59e0b);
    border-radius: 50%;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.particle-1 { width: 8px; height: 8px; top: 20%; left: 20%; animation-delay: 0s; }
.particle-2 { width: 12px; height: 12px; top: 40%; right: 32%; animation-delay: 1s; }
.particle-3 { width: 4px; height: 4px; top: 60%; left: 33%; animation-delay: 2s; }
.particle-4 { width: 8px; height: 8px; bottom: 40%; right: 20%; animation-delay: 3s; }
.particle-5 { width: 4px; height: 4px; bottom: 20%; left: 25%; animation-delay: 4s; }
.particle-6 { width: 6px; height: 6px; top: 80%; right: 40%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* CSS Variables for consistent theming */
:root {
    --primary-color: #facc15;
    --primary-hover: #eab308;
    --secondary-color: #525252;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --dark-bg: #050505;
    --card-bg: #111111;
    --border-color: rgba(250, 204, 21, 0.2);
    --text-primary: #ffffff;
    --text-secondary: #d4d4d4;
    --navbar-bg: rgba(5, 5, 5, 0.98);
    --hero-gradient: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    --glow-color: rgba(250, 204, 21, 0.3);
}

/* Sidebar Menu */
.sidebar-menu {
    position: fixed;
    top: 64px;
    left: 0;
    width: 80px;
    height: calc(100vh - 64px); /* Full height from below navbar */
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(250, 204, 21, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.3);
    border-radius: 0 12px 12px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(250, 204, 21, 0.6) rgba(5, 5, 5, 0.5);
}

.sidebar-menu:hover {
    width: 280px;
}

.sidebar-menu.collapsed {
    left: -60px;
}

.sidebar-menu::-webkit-scrollbar {
    width: 6px;
}

.sidebar-menu::-webkit-scrollbar-track {
    background: rgba(5, 5, 5, 0.5);
    border-radius: 3px;
}

.sidebar-menu::-webkit-scrollbar-thumb {
    background: rgba(250, 204, 21, 0.6);
    border-radius: 3px;
}

.sidebar-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(250, 204, 21, 0.8);
}

.sidebar-nav {
    padding: 0.5rem 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.sidebar-nav-item {
    margin-bottom: 0.25rem;
}

.sidebar-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    color: #d4d4d4;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
    white-space: nowrap;
}

.sidebar-nav-link:hover,
.sidebar-nav-link.active {
    color: #ffffff;
    background: rgba(250, 204, 21, 0.2);
    border-left-color: #facc15;
}

.sidebar-nav-link i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    min-width: 20px;
}

.sidebar-nav-link span {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.sidebar-menu:hover .sidebar-nav-link span {
    opacity: 1;
    transform: translateX(0);
}

.sidebar-logo {
    padding: 1rem 0.5rem;
    border-bottom: 1px solid rgba(250, 204, 21, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    flex-shrink: 0;
}

.sidebar-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.sidebar-logo img {
    max-width: 45px;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.sidebar-menu:hover .sidebar-logo img {
    max-width: 60px;
}

/* Sidebar Submenu */
.sidebar-submenu {
    padding: 0.5rem 0;
    background: rgba(250, 204, 21, 0.1);
    border-left: 3px solid rgba(250, 204, 21, 0.3);
    margin: 0.25rem 0;
}

.sidebar-submenu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.65rem 1rem;
    color: #d4d4d4;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
    white-space: nowrap;
    margin-left: 0.5rem;
}

.sidebar-submenu-link:hover,
.sidebar-submenu-link.active {
    color: #ffffff;
    background: rgba(250, 204, 21, 0.2);
    border-left-color: #facc15;
}

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

.sidebar-submenu-link span {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.sidebar-menu:hover .sidebar-submenu-link span {
    opacity: 1;
    transform: translateX(0);
}

#sidebarUserToggle i:last-child {
    display: none;
}

.sidebar-menu:hover #sidebarUserToggle i:last-child {
    display: inline;
}

/* ModernNavbar */
.navbar {
    background: var(--navbar-bg) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 0 !important;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    height: 64px;
}

.navbar .container {
    max-width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary-color), #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand img {
    height: 40px;
    margin-right: 0.5rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background: #facc15;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: #d4d4d4 !important;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
    margin: 0 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
    background: rgba(250, 204, 21, 0.2);
}

.navbar-nav .nav-link i {
    font-size: 1rem;
}

/* Modern Buttons */
.btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #f59e0b);
    color: #050505;
    box-shadow: 0 10px 24px rgba(250, 204, 21, 0.22);
}

.btn-primary:hover {
    box-shadow: 0 14px 28px rgba(250, 204, 21, 0.24);
    background: linear-gradient(135deg, #fde047, var(--primary-hover));
    color: #050505;
    text-shadow: none;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: #050505;
    box-shadow: 0 12px 24px rgba(250, 204, 21, 0.2);
    text-shadow: none;
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color), #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    color: white;
}

.btn-success:hover {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.8), 0 0 40px rgba(16, 185, 129, 0.6), 0 0 60px rgba(16, 185, 129, 0.4), 0 8px 25px rgba(16, 185, 129, 0.4);
    color: white;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger-color), #dc2626);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    color: white;
}

.btn-danger:hover {
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.8), 0 0 40px rgba(239, 68, 68, 0.6), 0 0 60px rgba(239, 68, 68, 0.4), 0 8px 25px rgba(239, 68, 68, 0.4);
    color: white;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.8);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

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

/* Support Button */
.btn-support {
    background: linear-gradient(135deg, #ff6b35, #f7931e) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-support:hover {
    background: linear-gradient(135deg, #e55a2b, #e8821a) !important;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.8), 0 0 40px rgba(255, 107, 53, 0.6), 0 0 60px rgba(255, 107, 53, 0.4), 0 8px 25px rgba(255, 107, 53, 0.4) !important;
    color: white !important;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.8) !important;
}

/* Content Container */
.content-container {
    margin-left: 80px;
    padding-top: 80px;
    transition: margin-left 0.3s ease;
}

.content-container.sidebar-collapsed {
    margin-left: 0;
}

/* Main content wrapper for consistent spacing */
.container, .container-fluid {
    width: 100%;
    max-width: none;
    padding: 0 2rem;
}

/* Modern Cards */
.card {
    background: rgba(11, 11, 11, 0.88);
    border: 1px solid rgba(250, 204, 21, 0.3);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(250, 204, 21, 0.4);
}

.card:hover {
    background: rgba(16, 16, 16, 0.96);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(250, 204, 21, 0.14);
    border-color: rgba(250, 204, 21, 0.5);
    transform: none !important;
}

.card-header {
    background: rgba(250, 204, 21, 0.1);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    font-weight: 600;
    padding: 1.25rem;
    border-radius: 8px 8px 0 0;
}

.card-body {
    padding: 1.5rem;
    background: transparent;
}

/* Form Controls */
.form-control, .form-select {
    background: rgba(17, 17, 17, 0.5);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    padding: 0.875rem 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.form-control:focus, .form-select:focus {
    background: rgba(17, 17, 17, 0.7);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.1);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: #a3a3a3;
}

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

/* Alerts */
.alert {
    border-radius: 12px;
    border: none;
    font-weight: 500;
    padding: 1rem 1.25rem;
    backdrop-filter: blur(10px);
}

.alert-success {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning-color);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Badges */
.badge {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(250, 204, 21, 0.2);
    color: #050505;
    border: 1px solid rgba(250, 204, 21, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* Badge color variations */
.badge.bg-success, 
.badge.badge-success {
    background: rgba(16, 185, 129, 0.2) !important;
    color: #10b981 !important;
    border: 1px solid rgba(16, 185, 129, 0.4) !important;
}

.badge.bg-danger,
.badge.badge-danger {
    background: rgba(239, 68, 68, 0.2) !important;
    color: #ef4444 !important;
    border: 1px solid rgba(239, 68, 68, 0.4) !important;
}

.badge.bg-warning,
.badge.badge-warning {
    background: rgba(245, 158, 11, 0.2) !important;
    color: #f59e0b !important;
    border: 1px solid rgba(245, 158, 11, 0.4) !important;
}

.badge.bg-secondary,
.badge.badge-secondary {
    background: rgba(148, 163, 184, 0.2) !important;
    color: #d4d4d4 !important;
    border: 1px solid rgba(148, 163, 184, 0.4) !important;
}

.badge.bg-info,
.badge.badge-info {
    background: rgba(250, 204, 21, 0.2) !important;
    color: #050505 !important;
    border: 1px solid rgba(250, 204, 21, 0.4) !important;
}

/* Admin role badge */
.badge-admin {
    background: rgba(250, 204, 21, 0.2) !important;
    color: #050505 !important;
    border: 1px solid rgba(250, 204, 21, 0.4) !important;
}

/* User role badge */
.badge-user {
    background: rgba(148, 163, 184, 0.2) !important;
    color: #d4d4d4 !important;
    border: 1px solid rgba(148, 163, 184, 0.4) !important;
}

/* Approved status badge */
.badge-approved {
    background: rgba(16, 185, 129, 0.2) !important;
    color: #10b981 !important;
    border: 1px solid rgba(16, 185, 129, 0.4) !important;
}

/* List Groups */
.list-group-item {
    background: rgba(5, 5, 5, 0.4);
    border-color: rgba(250, 204, 21, 0.3);
    border-top-color: rgba(250, 204, 21, 0.4);
    color: var(--text-primary);
    border-radius: 8px !important;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.08);
}

.list-group-item:hover {
    background: rgba(5, 5, 5, 0.6);
    border-color: rgba(250, 204, 21, 0.5);
    box-shadow: 0 0 25px rgba(250, 204, 21, 0.12);
    transform: translateX(5px);
}

.list-group-item.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Tables */
.table {
    color: var(--text-primary);
    background: transparent;
}

.table-hover tbody tr:hover {
    background: rgba(250, 204, 21, 0.1);
}

.table th {
    border-color: var(--border-color);
    background: rgba(250, 204, 21, 0.15);
    color: var(--text-primary);
    font-weight: 600;
    border-bottom: 2px solid rgba(250, 204, 21, 0.3);
}

.table td {
    border-color: var(--border-color);
}

/* Dark theme table */
.table-dark th {
    background: rgba(250, 204, 21, 0.15) !important;
    border-color: rgba(250, 204, 21, 0.3) !important;
    color: #ffffff !important;
    border-bottom: 2px solid rgba(250, 204, 21, 0.3) !important;
}

.table-dark tbody tr {
    background: rgba(17, 17, 17, 0.4) !important;
    border-color: rgba(250, 204, 21, 0.2) !important;
}

.table-dark td {
    border-color: rgba(250, 204, 21, 0.2) !important;
    color: #d4d4d4 !important;
}

.table-dark tbody tr:hover {
    background: rgba(250, 204, 21, 0.1) !important;
}

/* Dropdown Menus */
.dropdown-menu {
    background: rgba(5, 5, 5, 0.98);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
    color: #d4d4d4;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(250, 204, 21, 0.2);
    color: #ffffff;
}

.dropdown-divider {
    border-color: var(--border-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.display-4 {
    font-weight: 800;
}

.text-muted {
    color: #a3a3a3 !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-secondary {
    color: #a3a3a3 !important;
}

.text-light {
    color: #f5f5f5 !important;
}

.text-primary,
.text-info,
.link-primary {
    color: var(--primary-color) !important;
}

.bg-primary,
.bg-info {
    background-color: var(--primary-color) !important;
    color: #050505 !important;
}

.btn-outline-info {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-info:hover {
    background: var(--primary-color);
    color: #050505;
    box-shadow: 0 12px 24px rgba(250, 204, 21, 0.2);
}

/* Landing Homepage */
.landing-home .content-container {
    padding-top: 64px;
}

.landing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.landing-section {
    position: relative;
    padding: 5.5rem 0;
}

.landing-section-tight {
    padding-top: 4.75rem;
    padding-bottom: 4.75rem;
}

.landing-hero {
    position: relative;
    overflow: hidden;
    padding: 5.75rem 0 4.25rem;
    border-bottom: 1px solid rgba(250, 204, 21, 0.14);
}

.landing-hero::before,
.landing-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.landing-hero::before {
    width: 420px;
    height: 420px;
    top: -160px;
    left: -120px;
    background: rgba(250, 204, 21, 0.16);
}

.landing-hero::after {
    width: 440px;
    height: 440px;
    right: -120px;
    bottom: -220px;
    background: rgba(245, 158, 11, 0.14);
}

.landing-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(400px, 0.85fr);
    gap: 40px;
    align-items: start;
}

.landing-hero-copy {
    max-width: 860px;
}

.landing-hero-title {
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 4vw, 3.9rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
    color: #ffffff;
}

.landing-hero-title span {
    display: block;
    white-space: nowrap;
}

.landing-gradient-text {
    background: linear-gradient(135deg, #fff7cc, #fde047, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-copy-stack {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}

.landing-hero-lead {
    margin: 0;
    color: #d4d4d4;
    font-size: clamp(0.95rem, 1.05vw, 1.15rem);
    white-space: nowrap;
}

.landing-hero-subline {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.35rem, 2vw, 2.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.04em;
    white-space: nowrap;
}

.landing-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.landing-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.landing-summary-card {
    padding: 1.25rem 1.35rem;
    border-radius: 20px;
    border: 1px solid rgba(250, 204, 21, 0.18);
    background: rgba(5, 5, 5, 0.5);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.landing-summary-card strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    color: #ffffff;
}

.landing-summary-card span {
    display: block;
    color: #d4d4d4;
    line-height: 1.55;
}

.landing-hero-media {
    align-self: start;
    margin-top: 0.5rem;
}

.landing-hero-frame {
    padding: 1rem;
    border-radius: 32px;
    background: rgba(5, 5, 5, 0.55);
    border: 1px solid rgba(250, 204, 21, 0.18);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
}

.landing-hero-frame img {
    width: 100%;
    display: block;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-section-header {
    max-width: 1100px;
    margin: 0 auto 3.25rem;
    text-align: center;
}

.landing-section-header h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 3vw, 3rem);
    letter-spacing: -0.04em;
}

.landing-help-line,
.landing-packages-title,
.landing-packages-desc {
    white-space: nowrap;
}

.landing-help-line,
.landing-packages-desc {
    color: #d4d4d4;
    font-size: 1.05rem;
}

.landing-help-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.landing-help-card {
    padding: 1.6rem;
    border-radius: 20px;
    border: 1px solid rgba(250, 204, 21, 0.18);
    background: rgba(5, 5, 5, 0.42);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
}

.landing-help-card i {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: #fde68a;
}

.landing-help-card h3 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.45;
}

.landing-contrast-section {
    background: rgba(5, 5, 5, 0.58);
    border-top: 1px solid rgba(250, 204, 21, 0.12);
    border-bottom: 1px solid rgba(250, 204, 21, 0.12);
    overflow: hidden;
}

.landing-blob {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.landing-blob-right {
    top: -160px;
    right: -140px;
    background: rgba(250, 204, 21, 0.18);
}

.landing-blob-left {
    bottom: -180px;
    left: -140px;
    background: rgba(245, 158, 11, 0.14);
}

.landing-process-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 3.5rem;
    align-items: center;
}

.landing-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    margin-bottom: 1.15rem;
    border-radius: 999px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.14);
    color: #fcd34d;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-process-copy h2 {
    margin-bottom: 1.25rem;
    font-size: clamp(2rem, 3vw, 3rem);
    letter-spacing: -0.04em;
}

.landing-process-lead {
    color: #d4d4d4;
    font-size: 1.05rem;
    line-height: 1.8;
}

.landing-steps {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.landing-step {
    display: flex;
    gap: 1rem;
}

.landing-step-num {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 17, 17, 0.9);
    border: 1px solid rgba(250, 204, 21, 0.2);
    color: #fde68a;
    font-weight: 800;
}

.landing-step-title {
    margin-bottom: 0.25rem;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
}

.landing-step-desc {
    color: #d4d4d4;
    line-height: 1.7;
}

.landing-email-note {
    margin: 2rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(250, 204, 21, 0.14);
    color: #d4d4d4;
    line-height: 1.8;
}

.landing-email-note strong {
    color: #ffffff;
}

.landing-process-visual {
    padding: 1.1rem;
    border-radius: 28px;
    background: rgba(5, 5, 5, 0.45);
    border: 1px solid rgba(250, 204, 21, 0.16);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.landing-process-visual img {
    width: 100%;
    display: block;
    border-radius: 22px;
}

.landing-process-visual p {
    margin: 1rem 0 0;
    color: #d4d4d4;
    line-height: 1.65;
}

.landing-packages-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 1080px;
    margin: 0 auto;
}

.landing-package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(250, 204, 21, 0.18);
    background: rgba(5, 5, 5, 0.46);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.landing-package-card-featured {
    border-color: rgba(245, 158, 11, 0.34);
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.12);
}

.landing-package-pill {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #fde047, #f59e0b);
    color: #050505;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-package-tag {
    display: inline-flex;
    width: fit-content;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fcd34d;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-package-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(250, 204, 21, 0.12);
    border: 1px solid rgba(250, 204, 21, 0.16);
    color: #fbbf24;
    font-size: 1.4rem;
}

.landing-package-card h3 {
    margin: 0;
    font-size: 1.5rem;
}

.landing-package-price {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.08em;
    color: #ffffff;
}

.landing-package-copy {
    margin: 0;
    color: #d4d4d4;
    line-height: 1.7;
}

.landing-package-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.85rem;
    flex: 1;
}

.landing-package-card li {
    position: relative;
    padding-left: 1.5rem;
    color: #e2e8f0;
    line-height: 1.6;
}

.landing-package-card li::before {
    content: '';
    position: absolute;
    top: 0.6rem;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f59e0b;
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.8);
}

.landing-package-card .btn {
    justify-content: center;
}

.landing-cta-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.landing-cta {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.landing-cta h2 {
    margin-bottom: 1rem;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    letter-spacing: -0.05em;
}

.landing-cta p {
    margin-bottom: 2rem;
    color: #d4d4d4;
    font-size: 1.15rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.8) 50%, rgba(5, 5, 5, 0.95) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 120px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(250, 204, 21, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
}

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

.hero-section h1 {
    font-weight: 800;
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Products Cards */
.products-card {
    background: rgba(5, 5, 5, 0.4);
    border: 1px solid rgba(250, 204, 21, 0.3);
    border-radius: 12px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(250, 204, 21, 0.4);
}

.products-card:hover {
    background: rgba(5, 5, 5, 0.6);
    border-color: rgba(250, 204, 21, 0.5);
    box-shadow: 0 0 30px rgba(250, 204, 21, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: none !important;
}

.featured-products {
    border: 2px solid #ffd700 !important;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* Mobile Navigation */
@media (max-width: 1024px) {
    .sidebar-menu {
        display: none;
    }

    .content-container {
        margin-left: 0;
        padding-top: 64px;
        width: 100%;
        max-width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .navbar-nav .nav-link {
        display: none;
    }

    /* Full screen mobile navigation */
    .mobile-nav-menu {
        position: fixed;
        top: 64px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        transition: right 0.3s ease;
        z-index: 1020;
        overflow-y: auto;
    }

    .mobile-nav-menu.active {
        right: 0;
    }

    .mobile-nav-content {
        padding: 1rem 0;
        width: 100%;
    }

    .mobile-nav-link {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 1.5rem;
        color: #d4d4d4;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
        width: 100%;
    }

    .mobile-nav-link span {
        flex: 1;
        text-align: left;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link.active {
        color: #ffffff;
        background: rgba(250, 204, 21, 0.2);
        border-left-color: #facc15;
    }

    .mobile-nav-link i {
        font-size: 1.2rem;
        width: 24px;
        text-align: center;
        min-width: 24px;
    }

    .mobile-nav-divider {
        height: 1px;
        background: rgba(250, 204, 21, 0.2);
        margin: 1rem 2rem;
    }

    /* Full screen content */
    .container, .container-fluid {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    /* Prevent hover movement on mobile */
    .products-card:hover,
    .product-card:hover {
        transform: none !important;
    }

    /* Mobile-friendly cards */
    .card {
        margin-bottom: 1rem;
        border-radius: 12px;
        margin-left: 0;
        margin-right: 0;
        transform: none !important;
    }
    
    .card:hover {
        transform: none !important;
    }

    .card-body {
        padding: 1rem;
    }

    /* Mobile navbar adjustments */
    .navbar .container-fluid {
        padding: 0 1rem;
        width: 100%;
    }

    /* Mobile-friendly footer */
    .footer {
        margin-left: 0;
        width: 100%;
    }

    .footer .container-fluid {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
    }

    /* Mobile-friendly buttons */
    .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
        width: auto;
        margin-bottom: 0.5rem;
    }

    .d-grid .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    /* Hero section mobile */
    .hero-section {
        padding: 4rem 0;
        margin-top: -64px;
        padding-top: 80px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        gap: 0.75rem;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .hero-buttons .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .hero-buttons .btn:first-child {
        width: 100%;
        max-width: 220px;
    }

    .hero-buttons .btn:nth-child(2),
    .hero-buttons .btn:nth-child(3) {
        flex: 0 1 calc(50% - 0.375rem);
        max-width: 160px;
    }

    .hero-buttons .btn i {
        font-size: 1rem;
    }
}

@media (min-width: 1025px) {
    .hamburger {
        display: none !important;
    }

    .sidebar-menu {
        display: block;
    }

    .navbar-nav .nav-link {
        display: flex;
    }
}

/* Tablet Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .content-container {
        padding-top: 64px;
        width: 100%;
    }

    .container, .container-fluid {
        padding: 0 2rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-section {
        padding: 5rem 0;
        margin-top: -64px;
        padding-top: 80px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* Mobile Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 1rem 0;
        margin-top: -64px;
        padding-top: 80px;
    }

    .hero-section h1,
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .content-container {
        padding-top: 64px;
        width: 100%;
        max-width: 100%;
    }

    .card-body {
        padding: 1rem;
    }

    .btn {
        justify-content: center;
        font-size: 0.9rem;
    }

    .container, .container-fluid {
        padding: 0 1rem;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
}

/* Extra Small Mobile Design */
@media (max-width: 480px) {
    .hero-section h1,
    .hero-title {
        font-size: 1.6rem !important;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .container, .container-fluid {
        padding: 0 0.75rem;
    }

    /* Mobile navigation improvements */
    .navbar {
        height: 64px;
    }

    .navbar .container-fluid {
        height: 64px;
        padding: 0 1rem;
    }

    /* Hide desktop navbar items on mobile */
    .navbar-nav {
        display: none !important;
    }

    /* Show hamburger on mobile */
    .hamburger {
        display: flex !important;
    }

    /* Mobile navigation menu positioning */
    .mobile-nav-menu {
        top: 64px;
        width: 100%;
        height: calc(100vh - 64px);
        right: -100%;
    }

    .mobile-nav-menu.active {
        right: 0;
    }

    /* Dropdown adjustments for mobile */
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        margin-top: 0.5rem;
        border-radius: 8px;
        max-height: 300px;
        overflow-y: auto;
    }

    /* Footer mobile improvements */
    .footer {
        margin-left: 0;
        width: 100%;
        padding: 3rem 0 1rem !important;
    }

    .footer .container-fluid {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }

    .footer .col-lg-4,
    .footer .col-md-6 {
        margin-bottom: 2rem;
    }

    .footer .d-grid .btn {
        margin-bottom: 0.5rem;
    }

    /* Products cards mobile */
    .products-card {
        margin-bottom: 1rem;
    }

    .action-buttons-container {
        flex-direction: column;
        gap: 8px;
    }

    .action-btn {
        width: 100%;
        min-width: auto;
        text-align: center;
    }

    /* Form improvements */
    .form-control, .form-select {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }

    /* Table responsiveness */
    .table-responsive {
        margin-bottom: 1rem;
    }

    /* Modal improvements */
    .modal-dialog {
        margin: 1rem;
        width: calc(100% - 2rem);
        max-width: none;
    }

    /* Alert improvements */
    .alert {
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    /* Ensure mobile navigation works properly */
    .mobile-nav-link {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        min-height: 50px;
    }

    .mobile-nav-link span {
        flex: 1;
        text-align: left;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .container, .container-fluid {
        padding: 0 0.75rem;
    }

    .card-body {
        padding: 0.75rem;
    }

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

    .navbar .container-fluid {
        padding: 0 0.75rem;
    }

    .mobile-nav-link {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .mobile-nav-divider {
        margin: 0.75rem 1.5rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #111111 0%, #050505 100%) !important;
    border-top: 1px solid #374151;
    margin-top: 60px;
    position: relative;
    z-index: 10;
    width: 100%;
    margin-left: 0;
    padding: 4rem 0 2rem !important;
    left: 0;
    right: 0;
}

.footer .container-fluid {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: auto;
    padding: 0 2rem;
}

@media (max-width: 1024px) {
    .footer .container-fluid {
        max-width: 100%;
        margin-left: 0;
        padding: 0 1rem;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #d4d4d4;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: block;
    padding: 0.5rem 0;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

/* Content Grid Card Styles */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.content-card {
    background: linear-gradient(135deg, #111111 0%, #050505 100%);
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.content-card:hover {
    border-color: rgba(250, 204, 21, 0.5);
    box-shadow: 0 8px 24px rgba(250, 204, 21, 0.15);
    transform: translateY(-4px);
}

.content-card-image,
.content-card-placeholder {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.content-card-placeholder i {
    font-size: 2.5rem;
    color: rgba(250, 204, 21, 0.5);
}

.item-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(250, 204, 21, 0.9);
    color: #050505;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Badge colors for different content types - GLOBAL */
.badge.badge-game,
span.badge.badge-game {
    background-color: #facc15 !important;
    color: #050505 !important;
}

.badge.badge-app,
span.badge.badge-app {
    background-color: #10b981 !important;
    color: white !important;
}

.badge.badge-digital,
.badge.badge-product,
span.badge.badge-digital,
span.badge.badge-product {
    background-color: #f59e0b !important;
    color: #000 !important;
    font-weight: 600 !important;
}

.badge.badge-blog,
span.badge.badge-blog {
    background-color: #525252 !important;
    color: white !important;
}

.content-card-body {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.content-card-body h6 {
    font-size: 1.1rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.content-card-body p {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.content-card-body .action-buttons-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    width: 100%;
    margin-top: auto;
}

.content-card .action-btn {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
    width: 100%;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1rem;
    }
    
    .content-card-body {
        padding: 1rem;
    }

    .content-card-body h6 {
        font-size: 1rem;
    }

    .content-card .action-btn {
        padding: 0.5rem 0.6rem;
        font-size: 0.8rem;
    }
}

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

    .content-card {
        border-radius: 8px;
    }

    .content-card-image,
    .content-card-placeholder {
        height: 140px;
    }

    .content-card-body {
        padding: 0.9rem;
    }

    .content-card-body h6 {
        font-size: 0.95rem;
    }

    .content-card .action-btn {
        padding: 0.4rem 0.5rem;
        font-size: 0.75rem;
    }

    .item-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
}

.legal-link {
    border-left: 2px solid transparent;
    padding-left: 1rem !important;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.legal-link:hover {
    border-left-color: var(--primary-color);
    background: rgba(250, 204, 21, 0.1);
    padding-left: 1.5rem !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

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

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d4d4d4;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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


/* Main Menu Section */
.main-menu-section {
    background: rgba(17, 17, 17, 0.5);
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

.main-menu {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.main-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    min-width: 100px;
}

.main-menu-item:hover {
    color: var(--primary-color);
    background: rgba(250, 204, 21, 0.1);
    border-color: var(--primary-color);
    text-decoration: none;
}

.main-menu-item i {
    font-size: 1.5rem;
}

.main-menu-item span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Hero Styles */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Satisfy', 'Pacifico', cursive;
    font-style: italic;
    letter-spacing: 0.05em;
}

.mobile-break {
    display: none;
}

@media (max-width: 768px) {
    .mobile-break {
        display: block;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d4d4d4;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gradient-text {
    background: linear-gradient(135deg, #fff7cc 0%, #fde047 48%, #f59e0b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations */
/* fadeInUp animation removed - no motion effects on page load */

/* Floating Elements */
.floating {
    animation: floating 3s ease-in-out infinite;
}

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

/* Status badges */
.status-pending {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning-color);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-approved {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-rejected {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
    position: fixed;
    top: 64px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 64px);
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(250, 204, 21, 0.3);
    transition: right 0.3s ease;
    z-index: 1020;
    overflow-y: auto;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.3);
}

.mobile-nav-menu.active {
    right: 0;
}

.mobile-nav-content {
    padding: 1rem 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #d4d4d4;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #ffffff;
    background: rgba(250, 204, 21, 0.2);
    border-left-color: #facc15;
    text-decoration: none;
}

.mobile-nav-link i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    min-width: 20px;
}

.mobile-nav-link .badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
}

.mobile-nav-divider {
    height: 1px;
    background: rgba(250, 204, 21, 0.2);
    margin: 0.5rem 1.5rem;
}

/* Mobile scrollbar */
.mobile-nav-menu::-webkit-scrollbar {
    width: 4px;
}

.mobile-nav-menu::-webkit-scrollbar-track {
    background: rgba(5, 5, 5, 0.5);
}

.mobile-nav-menu::-webkit-scrollbar-thumb {
    background: rgba(250, 204, 21, 0.6);
    border-radius: 2px;
}

.mobile-nav-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(250, 204, 21, 0.8);
}

/* Product Card Styles */
.product-card {
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 8px 24px rgba(250, 204, 21, 0.15);
    border-color: rgba(250, 204, 21, 0.4);
    transform: none !important;
}

.product-card-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    width: 100%;
    height: 200px;
}

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

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

.product-card-footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Product Card Badge */
.product-card-image .badge {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    z-index: 10 !important;
    padding: 6px 12px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #050505 !important;
    background-color: rgba(250, 204, 21, 0.9) !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
}

/* Override product card badge colors */
.product-card-image .badge.badge-game {
    background-color: #facc15 !important;
    color: #050505 !important;
}

.product-card-image .badge.badge-app {
    background-color: #10b981 !important;
    color: white !important;
}

.product-card-image .badge.badge-digital,
.product-card-image .badge.badge-product {
    background-color: #f59e0b !important;
    color: #000 !important;
}

.product-card-image .badge.badge-blog {
    background-color: #525252 !important;
    color: white !important;
}

/* Blog Carousel Section */
.blog-carousel-section {
    padding: 60px 0;
    background: transparent;
    position: relative;
    margin-bottom: 40px;
}

.blog-carousel-section .section-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #fde68a !important;
}

.blog-carousel-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-carousel-wrapper {
    flex: 1;
    overflow: hidden;
}

.blog-carousel {
    display: flex;
    gap: 0px;
    scroll-behavior: smooth;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    margin: 0;
    scroll-snap-type: x mandatory;
}

.blog-carousel::-webkit-scrollbar {
    height: 0;
    width: 0;
}

.blog-carousel::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.blog-carousel::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 10px;
}

.blog-carousel::-webkit-scrollbar-thumb:hover {
    background: transparent;
}

.blog-carousel-item {
    flex: 0 0 calc(33.333% - 3px);
    scroll-snap-align: start;
    margin-right: 3px;
}

/* Carousel Navigation Buttons */
.carousel-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.8), rgba(245, 158, 11, 0.8));
    border: 1px solid rgba(250, 204, 21, 0.5);
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
}

.carousel-nav-btn:hover {
    background: linear-gradient(135deg, rgba(250, 204, 21, 1), rgba(245, 158, 11, 1));
    box-shadow: 0 8px 20px rgba(250, 204, 21, 0.4);
    transform: scale(1.1);
}

.carousel-nav-prev {
    order: -1;
}

/* Mobile Responsive - 1 card at a time */
@media (max-width: 768px) {
    .blog-carousel-item {
        min-width: calc(100% - 0px);
        flex-shrink: 0;
    }

    .carousel-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .blog-carousel-section {
        padding: 40px 0;
        margin-bottom: 30px;
    }

    .blog-carousel-section .section-header h2 {
        font-size: 1.5rem;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .carousel-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .blog-carousel-container {
        gap: 12px;
    }

    .blog-carousel {
        gap: 16px;
    }
}

/* Rich Content Styling (Quill Editor Output) */
.rich-content h1,
.rich-content h2,
.rich-content h3,
.rich-content h4,
.rich-content h5,
.rich-content h6 {
    color: #ffffff;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.rich-content h1 { font-size: 2rem; }
.rich-content h2 { font-size: 1.75rem; }
.rich-content h3 { font-size: 1.5rem; }

.rich-content p {
    color: #e0e0e0;
    margin: 0;
    line-height: 1.8;
}

.rich-content ul,
.rich-content ol {
    color: #e0e0e0;
    margin-left: 2rem;
    margin-top: 0.35rem;
    margin-bottom: 0.35rem;
    line-height: 1.8;
}

.rich-content li {
    margin-bottom: 0;
}

.rich-content blockquote {
    border-left: 4px solid #facc15;
    padding-left: 1rem;
    margin: 1rem 0;
    color: #b0b0b0;
    font-style: italic;
}

.rich-content code {
    background-color: rgba(5, 5, 5, 0.8);
    color: #fde68a;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
}

.rich-content pre {
    background-color: rgba(5, 5, 5, 0.8);
    border-left: 4px solid #facc15;
    padding: 1rem;
    border-radius: 5px;
    overflow-x: auto;
    margin: 1rem 0;
}

.rich-content pre code {
    background: none;
    padding: 0;
    color: #fde68a;
}

/* Text Alignment */
.rich-content {
    text-align: left;
    overflow-x: hidden;
}

.rich-content img,
.blog-content img,
.ql-editor img,
.readyht-rich-image {
    display: block;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    margin: 1.5rem 0;
    box-sizing: border-box;
}

.rich-content .ql-align-center img,
.blog-content .ql-align-center img,
.ql-editor .ql-align-center img {
    margin-left: auto;
    margin-right: auto;
}

.rich-content .ql-align-right img,
.blog-content .ql-align-right img,
.ql-editor .ql-align-right img {
    margin-left: auto;
    margin-right: 0;
}

.ql-align-center {
    text-align: center !important;
}

.ql-align-right {
    text-align: right !important;
}

.ql-align-justify {
    text-align: justify !important;
}

/* Blog Detail Page - Mobile Stack Layout */
@media (max-width: 991px) {
    .card-body .row [class*="col-"] {
        width: 100% !important;
        flex-basis: 100% !important;
    }
}

@media (max-width: 1280px) {
    .landing-help-line,
    .landing-packages-title,
    .landing-packages-desc,
    .landing-hero-lead,
    .landing-hero-subline {
        white-space: normal;
    }
}

@media (max-width: 1100px) {
    .landing-hero-grid,
    .landing-process-grid {
        grid-template-columns: 1fr;
    }

    .landing-summary-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
    }

    .landing-hero-media {
        margin-top: 0;
    }
}

@media (max-width: 992px) {
    .landing-help-grid,
    .landing-packages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .landing-container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .landing-section,
    .landing-section-tight,
    .landing-cta-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .landing-hero {
        padding-top: 4.5rem;
        padding-bottom: 3.5rem;
    }

    .landing-hero-copy,
    .landing-section-header,
    .landing-cta {
        text-align: center;
    }

    .landing-hero-title span {
        white-space: normal;
    }

    .landing-copy-stack {
        align-items: center;
    }

    .landing-hero-actions {
        justify-content: center;
    }

    .landing-step {
        text-align: left;
    }

    .landing-package-card {
        padding: 1.5rem;
    }
}