:root {
    --primary: #4FA3FF;
    --accent: #1E3A5F;
    --background: #0B0F14;
    --card-bg: #161B22;
    --border: #30363D;
    --text-muted: #D1D5DB;
    --text-white: #FFFFFF;
    --success: #6BCF9B;
    --danger: #FF4F4F;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

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

::-webkit-scrollbar-thumb {
    background: #30363D;
    border-radius: 5px;
    border: 2px solid #0B0F14;
}

::-webkit-scrollbar-thumb:hover {
    background: #4FA3FF;
}

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

html, body {
    height: auto;
    min-height: 100%;
}

body {
    background-color: var(--background);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(79, 163, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(107, 207, 155, 0.05) 0%, transparent 20%);
    color: var(--text-white);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto; /* Force vertical scroll availability */
}

/* Glow Accents */
.glow-primary {
    text-shadow: 0 0 10px rgba(79, 163, 255, 0.5);
}

.glow-box {
    box-shadow: 0 0 20px rgba(79, 163, 255, 0.1);
}

/* Hexagon Elements (Pseudo) */
.hexagon-bg {
    position: relative;
}

.hexagon-bg::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l25.98 15v30L30 60 4.02 45V15z' fill-rule='evenodd' stroke='%23ffffff' stroke-width='1' fill='none' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

/* Mascot Placeholder */
.mascot-assistant {
    width: 80px;
    height: 80px;
    background: var(--card-bg);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px var(--primary);
    margin: 0 auto 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

a:hover {
    color: var(--text-white);
}

ul {
    list-style: none;
}

/* Navbar */
.navbar {
    background-color: rgba(11, 15, 20, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    position: relative;
    gap: 2rem;
}

.navbar-brand img {
    height: 35px;
    width: auto;
}

.navbar-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    grid-column: 2;
    width: 100%;
    justify-content: center;
}

.navbar-nav li.nav-center {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.navbar-nav li.nav-right {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.navbar-nav li.nav-right:nth-child(4) {
    margin-left: 2rem;
}

.navbar-nav a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.2s;
}

.navbar-nav a:hover, .navbar-nav a.active {
    color: var(--primary);
    background: rgba(79, 163, 255, 0.05);
}

.cart-badge {
    position: relative;
    display: inline-block;
    background-color: #ff4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    border: 2px solid white;
    margin-left: -8px;
}

.navbar-dropdown {
    position: relative;
}

.navbar-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 18px;
    z-index: 1099;
}

.navbar-dropdown .dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.5rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.navbar-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg) translateY(-2px);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: linear-gradient(135deg, rgba(11, 15, 20, 0.95) 0%, rgba(22, 27, 34, 0.85) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(79, 163, 255, 0.2);
    border-radius: 14px;
    min-width: 240px;
    margin-top: 0;
    padding: 0.75rem 0;
    box-shadow: 0 20px 60px rgba(79, 163, 255, 0.15), inset 0 1px 0 rgba(79, 163, 255, 0.1);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: -12px;
    padding-top: 1.25rem;
}

.navbar-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 0.9rem 1.5rem;
    color: var(--text-muted);
    transition: all 0.2s ease;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.dropdown-menu a::before {
    content: '→';
    position: absolute;
    left: 0.8rem;
    opacity: 0;
    transition: all 0.2s ease;
    margin-right: 0.5rem;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(79, 163, 255, 0.15) 0%, rgba(79, 163, 255, 0.05) 100%);
    color: var(--primary);
    padding-left: 2.2rem;
}

.dropdown-menu a:hover::before {
    opacity: 1;
}

.dropdown-menu hr {
    border: none;
    border-top: 1px solid rgba(79, 163, 255, 0.1);
    margin: 0.5rem 0;
}

.navbar-account {
    position: relative;
}

.account-toggle {
    background: rgba(79, 163, 255, 0.1);
    border: 1px solid rgba(79, 163, 255, 0.25);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.account-toggle:hover {
    background: rgba(79, 163, 255, 0.15);
    border-color: rgba(79, 163, 255, 0.4);
}

.account-toggle.active {
    background: rgba(79, 163, 255, 0.2);
    border-color: var(--primary);
}

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

.account-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-toggle i {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.account-toggle.active i {
    transform: rotate(180deg);
}

.account-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.6rem;
    background: linear-gradient(135deg, rgba(25, 30, 45, 0.98) 0%, rgba(25, 30, 45, 0.95) 100%);
    border: 1px solid rgba(79, 163, 255, 0.25);
    border-radius: 12px;
    min-width: 300px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.dropdown-header {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(79, 163, 255, 0.1);
}

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

.dropdown-user-info {
    flex: 1;
}

.dropdown-name {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.95rem;
}

.dropdown-email {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.dropdown-divider {
    height: 1px;
    background: rgba(79, 163, 255, 0.1);
    margin: 0.5rem 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1rem;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 0 0.5rem;
}

.dropdown-item:hover {
    background: rgba(79, 163, 255, 0.1);
    color: var(--primary);
}

.dropdown-item.danger:hover {
    background: rgba(255, 107, 107, 0.1);
    color: #FF6B6B;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    font-size: 0.95rem;
}

.dropdown-item-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-item-title {
    font-weight: 500;
    font-size: 0.9rem;
}

.dropdown-item-desc {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.dropdown-item-badge {
    background: rgba(79, 163, 255, 0.2);
    color: var(--primary);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-white);
    border-radius: 2px;
}

.lang-switcher-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.lang-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    transition: all 0.2s;
    opacity: 0.6;
}

.lang-flag:hover {
    opacity: 1;
    background: rgba(79, 163, 255, 0.1);
    transform: scale(1.15);
}

.lang-flag.active {
    opacity: 1;
    background: rgba(79, 163, 255, 0.15);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #4FA3FF 0%, #3b8fe0 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(79, 163, 255, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3b8fe0 0%, #2d6fb5 100%);
    color: white;
    box-shadow: 0 20px 40px rgba(79, 163, 255, 0.5);
    transform: translateY(-3px);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 10px 25px rgba(79, 163, 255, 0.3);
    transform: translateY(-3px);
}

.btn-danger {
    background: linear-gradient(135deg, #FF4F4F 0%, #dd3333 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(255, 79, 79, 0.3);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #dd3333 0%, #c41c1c 100%);
    color: white;
    box-shadow: 0 20px 40px rgba(255, 79, 79, 0.5);
    transform: translateY(-3px);
}

/* Cards & Layers */
.card {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(79, 163, 255, 0.1);
    border-color: rgba(79, 163, 255, 0.4);
}

.card::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(79, 163, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Layered UI elements */
.layer-top {
    z-index: 10;
    position: relative;
}

.glass-panel {
    background: rgba(22, 27, 34, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-white);
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(79, 163, 255, 0.2);
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.alert-danger {
    background-color: rgba(255, 79, 79, 0.1);
    border: 1px solid var(--danger);
    color: var(--danger);
}

.alert-success {
    background-color: rgba(107, 207, 155, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

/* Footer */
.footer {
    background-color: var(--card-bg);
    border-top: 1px solid var(--border);
    padding: 5rem 0 2rem;
    margin-top: 6rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    color: var(--text-white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section img {
    margin-top: 0.5rem;
    max-width: 100%;
}

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

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

.footer-section ul li a,
.footer-section ul li {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
}

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

.footer-divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin: 2rem 0;
}

.footer-tagline {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-tagline p {
    font-size: 1.15rem;
    color: var(--primary);
    font-weight: 600;
    font-style: italic;
    margin: 0;
}

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

.footer-bottom p {
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
}

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

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-muted);
}

.py-4 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.text-right {
    text-align: right;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 0;
    background: radial-gradient(circle at center, rgba(30, 58, 95, 0.5) 0%, rgba(11, 15, 20, 1) 100%);
    position: relative;
    overflow: hidden;
}

.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6rem;
}

.hero-text {
    flex: 1;
    z-index: 1;
    max-width: 650px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-mascot {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mascot-assistant-large {
    width: 420px;
    height: 420px;
    background: linear-gradient(135deg, rgba(22, 27, 34, 0.8) 0%, rgba(30, 58, 95, 0.3) 100%);
    backdrop-filter: blur(30px);
    border: 4px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 80px rgba(79, 163, 255, 0.5), inset 0 1px 20px rgba(79, 163, 255, 0.2);
    font-size: 12rem;
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    overflow: hidden;
}

.mascot-assistant-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

.glow-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(79, 163, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #4FA3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2.5px;
    line-height: 1.15;
}

.hero p {
    font-size: 1.55rem;
    color: var(--text-muted);
    max-width: 650px;
    margin-bottom: 4rem;
    line-height: 1.75;
}

.hero-btns {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.service-card-v2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 4.5rem 4rem;
    height: 100%;
    min-height: 500px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(22, 27, 34, 0.9) 0%, rgba(30, 58, 95, 0.25) 100%);
    border-radius: 28px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(79, 163, 255, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    border-radius: 20px;
}

.service-card-v2:hover {
    background: linear-gradient(135deg, rgba(22, 27, 34, 1) 0%, rgba(30, 58, 95, 0.4) 100%);
    border-color: var(--primary);
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(79, 163, 255, 0.2), inset 0 1px 0 rgba(79, 163, 255, 0.2);
}

.service-card-v2:hover::before {
    opacity: 1;
}

.service-card-v2:hover .service-icon-v2 {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 30px rgba(79, 163, 255, 0.6);
}

.service-icon-v2 {
    font-size: 6.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, rgba(79, 163, 255, 0.25) 0%, rgba(79, 163, 255, 0.1) 100%);
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    border: 2.5px solid rgba(79, 163, 255, 0.4);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.service-card-v2 h3 {
    font-size: 1.85rem;
    margin-bottom: 1.75rem;
    color: var(--text-white);
    font-weight: 700;
    letter-spacing: -0.8px;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.service-card-v2 p {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

@media (max-width: 1200px) {
    .services-row {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .services-row {
        grid-template-columns: 1fr !important;
    }
    
    .services-overview .d-flex {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .services-overview .text-left {
        text-align: center !important;
    }
}

/* Features Section Enhanced */
.features-section {
    background: linear-gradient(to bottom, rgba(11, 15, 20, 1), rgba(30, 58, 95, 0.05), rgba(11, 15, 20, 1));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    padding: 5rem 0;
}

.feature-card {
    background: rgba(22, 27, 34, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    background: rgba(79, 163, 255, 0.03);
    border-color: rgba(79, 163, 255, 0.2);
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at center, rgba(79, 163, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.feature-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(79, 163, 255, 0.1);
    animation: pulse-ring 3s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.2; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

/* Scroll Down Arrow */
.scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    z-index: 2;
}

.mouse {
    width: 28px;
    height: 45px;
    border-radius: 16px;
    border: 2.5px solid var(--text-muted);
    position: relative;
    margin-bottom: 8px;
}

.wheel {
    width: 5px;
    height: 10px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouse-wheel 2s infinite;
}

@keyframes mouse-wheel {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 22px; }
}

.m_scroll_arrows {
    display: block;
    width: 14px;
    height: 14px;
    border-right: 2.5px solid var(--text-muted);
    border-bottom: 2.5px solid var(--text-muted);
    transform: rotate(45deg);
    margin: -7px 0;
    animation: mouse-scroll 2s infinite;
}

.unu { animation-delay: 0.1s; }
.doi { animation-delay: 0.2s; }
.trei { animation-delay: 0.3s; }

@keyframes mouse-scroll {
    0% { opacity: 0; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    margin-top: 2rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: 2rem;
    margin-right: auto;
}

.services-overview .grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.services-section {
    position: relative;
    overflow: hidden;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header .section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.services-header .section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
}

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

.service-card {
    background: linear-gradient(135deg, rgba(79, 163, 255, 0.1) 0%, rgba(79, 163, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(79, 163, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(79, 163, 255, 0.5);
    background: linear-gradient(135deg, rgba(79, 163, 255, 0.15) 0%, rgba(79, 163, 255, 0.08) 100%);
    box-shadow: 0 20px 40px rgba(79, 163, 255, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(79, 163, 255, 0.1);
    border-radius: 16px;
    filter: drop-shadow(0 0 12px rgba(79, 163, 255, 0.3));
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
    line-height: 1.4;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.card-link:hover {
    gap: 1rem;
    color: var(--primary-light);
}

.services-cta {
    margin-top: 2rem;
}



.btn-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    text-decoration: none;
    margin-top: auto;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.btn-link:hover {
    color: var(--text-white);
    gap: 1rem;
    transform: translateX(6px);
}

.btn-link:hover::after {
    width: 100%;
}

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

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

/* Utility Classes */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-5 { padding-top: 5rem; padding-bottom: 5rem; }
.section-padding { padding: 8rem 0; }

.section-split {
    display: flex;
    align-items: flex-start;
    gap: 6rem;
}

.section-info {
    flex: 0 0 400px;
}

.section-info .section-title {
    text-align: left;
    display: block;
}

.section-info .section-title::after {
    left: 0;
    transform: none;
}

.section-info .section-subtitle {
    text-align: left;
    margin-left: 0;
    margin-bottom: 2rem;
}

.section-visual {
    flex: 1;
}
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 1rem; padding-right: 1rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-5 { padding-left: 3rem; padding-right: 3rem; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 1rem; }
.mr-4 { margin-right: 1.5rem; }
.mr-5 { margin-right: 3rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 1rem; }
.ml-4 { margin-left: 1.5rem; }
.ml-5 { margin-left: 3rem; }
.mx-auto { margin-left: 2rem; margin-right: auto; }
.w-100 { width: 100%; }
.d-flex { display: flex; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }
.gap-5 { gap: 3rem; }

.footer-newsletter h4 {
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form .form-control {
    background: var(--background);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--background);
    transform: translateY(-3px);
}

/* Mobile Responsiveness Refined */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.cta-card {
    border: 1px solid var(--primary) !important;
    background: radial-gradient(circle at center, rgba(79, 163, 255, 0.1) 0%, transparent 100%) !important;
}

.services-grid-v2 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 4rem;
    margin: 0 auto;
}

/* ===== TABLET DEVICES (768px - 991px) ===== */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero {
        min-height: 90vh;
        padding: 6rem 0;
    }

    .hero-split {
        gap: 4rem;
    }

    .hero-mascot {
        width: 420px;
        height: 420px;
    }

    .mascot-assistant-large {
        width: 340px;
        height: 340px;
        font-size: 10rem;
        box-shadow: 0 0 60px rgba(79, 163, 255, 0.4);
    }

    .glow-circle {
        width: 480px;
        height: 480px;
    }

    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 1.35rem;
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-split {
        gap: 2rem;
    }

    .section-info {
        flex: 0 0 auto;
    }

    .feature-card {
        padding: 2.5rem 1.5rem;
    }

    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .services-header .section-title {
        font-size: 2.5rem;
    }

    .services-header .section-subtitle {
        font-size: 1rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .services-grid-v2 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 3.5rem;
    }

    .service-card-v2 {
        padding: 4rem 3.5rem;
        border-radius: 26px;
        min-height: 480px;
    }

    .service-icon-v2 {
        font-size: 6rem;
        width: 150px;
        height: 150px;
        margin-bottom: 2.5rem;
        border-radius: 26px;
    }

    .service-card-v2 h3 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .service-card-v2 p {
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 2rem;
    }
}

/* ===== MOBILE DEVICES (480px - 767px) ===== */
@media (max-width: 767px) {
    .container {
        padding: 0 1rem;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .navbar .container {
        grid-template-columns: auto 1fr;
    }

    .navbar-brand img {
        height: 28px;
    }

    .menu-toggle {
        display: flex;
        grid-column: 2;
        justify-self: end;
    }

    .navbar-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--card-bg);
        padding: 1.5rem;
        gap: 0.75rem;
        border-bottom: 1px solid var(--border);
        display: none;
        z-index: 1000;
        flex-direction: column;
        justify-content: flex-start;
    }

    .navbar-nav a {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .navbar-nav li.nav-center {
        flex-direction: column;
        gap: 0;
    }

    .navbar-nav li.nav-right {
        flex-direction: column;
        gap: 0;
        margin-left: 0;
    }

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

    /* Mobile Dropdown Menu */
    .dropdown-menu {
        position: static;
        background: rgba(22, 27, 34, 0.6);
        backdrop-filter: blur(10px);
        border: none;
        border-top: 1px solid rgba(79, 163, 255, 0.1);
        border-radius: 0;
        min-width: auto;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 0.75rem 0 0.75rem 1.5rem;
        margin-top: 0.5rem;
    }

    .navbar-dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .dropdown-menu a::before {
        display: none;
    }

    .dropdown-menu a:hover {
        padding-left: 1rem;
    }

    .lang-switcher-row {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(79, 163, 255, 0.1);
        gap: 1rem !important;
        justify-content: center;
        width: 100% !important;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: auto;
        padding: 3.5rem 0;
    }

    .hero-split {
        flex-direction: column;
        gap: 3.5rem;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    .hero-visual {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .hero-mascot {
        width: 220px;
        height: 220px;
    }

    .mascot-assistant-large {
        width: 220px;
        height: 220px;
        font-size: 6rem;
        box-shadow: 0 0 40px rgba(79, 163, 255, 0.3);
    }

    .glow-circle {
        width: 300px;
        height: 300px;
    }

    .hero h1 {
        font-size: 2rem;
        letter-spacing: -0.5px;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .hero-btns {
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    /* Scroll Down Mobile */
    .scroll-down {
        bottom: 50px;
    }

    .mouse {
        width: 24px;
        height: 38px;
        border-radius: 14px;
        margin-bottom: 6px;
    }

    .m_scroll_arrows {
        width: 12px;
        height: 12px;
        margin: -5px 0;
    }

    /* Services Section Mobile */
    .services-section {
        padding: 3rem 0;
    }

    .services-overview {
        padding: 3rem 0;
    }

    .services-header {
        margin-bottom: 3rem;
    }

    .services-header .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .services-header .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

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

    .service-card {
        padding: 1.5rem 1.25rem;
        border-radius: 16px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .service-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .section-title::after {
        width: 40px;
        height: 3px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .services-grid-v2 {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
        max-width: 100%;
    }

    .service-card-v2 {
        padding: 3.5rem 3rem;
        margin-bottom: 0;
        min-height: 420px;
        border-radius: 24px;
    }

    .service-icon-v2 {
        font-size: 5rem;
        width: 130px;
        height: 130px;
        margin-bottom: 2.5rem;
        border-radius: 22px;
    }

    .service-card-v2 h3 {
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 1.3rem;
        line-height: 1.3;
    }

    .service-card-v2 p {
        font-size: 1.05rem;
        line-height: 1.8;
    }

    /* Features Section Mobile */
    .features-section {
        padding: 3rem 0;
    }

    .features-section .grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .feature-card h4 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    /* Stats Section Mobile */
    .stats-section {
        padding: 3rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .text-muted {
        font-size: 0.85rem;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 2.5rem 0;
    }

    .cta-card {
        padding: 2rem 1.5rem !important;
    }

    .cta-card h2 {
        font-size: 1.8rem;
    }

    .cta-card p {
        font-size: 0.95rem;
    }

    .cta-section .d-flex {
        flex-direction: column;
        gap: 1rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 3rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-logo p {
        max-width: 100%;
        margin: 0 auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links h4 {
        margin-bottom: 1rem;
        font-size: 1rem;
    }

    .footer-links ul li {
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-newsletter h4 {
        font-size: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form .form-control {
        width: 100%;
    }

    .newsletter-form .btn {
        width: 100%;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .footer-legal a {
        display: block;
    }

    /* Grid & Cards Mobile */
    .grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .card {
        padding: 1.5rem;
    }

    /* Section Padding Mobile */
    .section-padding {
        padding: 2.5rem 0;
    }

    .mb-5 {
        margin-bottom: 2rem;
    }

    .mb-4 {
        margin-bottom: 1.5rem;
    }

    .mt-4 {
        margin-top: 1.5rem;
    }

    /* Utility Flex Mobile */
    .d-flex {
        flex-direction: column;
    }

    .gap-3 {
        gap: 1rem;
    }

    .gap-4 {
        gap: 1.5rem;
    }

    .gap-5 {
        gap: 2rem;
    }

    /* Pricing Page Mobile */
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .price {
        font-size: 2.5rem;
        margin: 1.5rem 0;
    }

    .pricing-features li {
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    /* Services Page Mobile */
    .services-detailed-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .service-detail-card {
        padding: 2rem 1.5rem !important;
    }

    .service-badge {
        top: 1rem;
        right: 1rem;
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
    }

    .service-main {
        flex-direction: column;
        gap: 1rem;
    }

    .detail-icon {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
    }

    .detail-text h2 {
        font-size: 1.4rem;
    }

    .feature-list li {
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
    }
}

/* ===== EXTRA SMALL DEVICES (< 480px) ===== */
@media (max-width: 479px) {
    .container {
        padding: 0 0.75rem;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-brand img {
        height: 24px;
    }

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

    /* Hero Extra Small (< 480px) */
    .hero {
        min-height: auto;
        padding: 2.5rem 0;
    }

    .hero-split {
        gap: 1.5rem;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-visual {
        width: 100%;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.25;
        margin-bottom: 0.75rem;
        letter-spacing: -0.5px;
    }

    .hero p {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .hero-btns {
        gap: 0.75rem;
        width: 100%;
    }

    .btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .hero-mascot {
        width: 180px;
        height: 180px;
    }

    .mascot-assistant-large {
        width: 180px;
        height: 180px;
        font-size: 5rem;
        box-shadow: 0 0 30px rgba(79, 163, 255, 0.3);
    }

    .glow-circle {
        width: 240px;
        height: 240px;
    }

    .scroll-down {
        bottom: 28px;
    }

    .mouse {
        width: 22px;
        height: 36px;
        border-radius: 12px;
        margin-bottom: 5px;
        border: 2px solid var(--text-muted);
    }

    .wheel {
        width: 4px;
        height: 8px;
        top: 8px;
    }

    .m_scroll_arrows {
        width: 11px;
        height: 11px;
        border-right: 2px solid var(--text-muted);
        border-bottom: 2px solid var(--text-muted);
        margin: -5px 0;
    }

    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    /* Typography Extra Small */
    .section-title {
        font-size: 1.5rem;
    }

    .section-title::after {
        width: 30px;
        height: 2px;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* Services Grid Extra Small */
    .services-grid-v2 {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        max-width: 100%;
    }

    .service-icon-v2 {
        font-size: 4.5rem;
        width: 110px;
        height: 110px;
        margin-bottom: 2rem;
        border-radius: 20px;
    }

    .service-card-v2 {
        padding: 3rem 2.5rem;
        margin-bottom: 0;
        min-height: 380px;
        border-radius: 22px;
    }

    .service-card-v2 h3 {
        font-size: 1.45rem;
        margin-bottom: 1.2rem;
        font-weight: 700;
        line-height: 1.3;
    }

    .service-card-v2 p {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.7;
    }

    /* Stats Grid Extra Small */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .text-muted {
        font-size: 0.8rem;
    }

    /* CTA Extra Small */
    .cta-card {
        padding: 1.5rem 1.25rem !important;
    }

    .cta-card h2 {
        font-size: 1.4rem;
    }

    .cta-card p {
        font-size: 0.9rem;
    }

    /* Footer Extra Small */
    .footer {
        padding: 2.5rem 0 1rem;
    }

    .footer-content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-logo img {
        max-width: 120px;
    }

    .footer-links h4 {
        font-size: 0.95rem;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .footer-bottom {
        font-size: 0.75rem;
        padding-top: 1rem;
    }

    /* Cards Extra Small */
    .card {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .form-control {
        padding: 0.6rem 0.75rem;
        font-size: 0.9rem;
    }

    /* Spacing Extra Small */
    .section-padding {
        padding: 2rem 0;
    }

    .mb-5 {
        margin-bottom: 1.5rem;
    }

    .mb-4 {
        margin-bottom: 1rem;
    }

    .mb-3 {
        margin-bottom: 0.75rem;
    }

    .mt-4 {
        margin-top: 1rem;
    }

    .px-5 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .gap-3 {
        gap: 0.75rem;
    }

    .gap-4 {
        gap: 1rem;
    }

    .gap-5 {
        gap: 1.5rem;
    }
}

/* ===== SMALL-MEDIUM DEVICES (480px - 767px) ===== */
@media (min-width: 480px) and (max-width: 767px) {
    /* Hero Section Small-Medium */
    .hero {
        min-height: auto;
        padding: 3.5rem 0;
    }

    .hero-split {
        gap: 2rem;
    }

    .hero-mascot {
        width: 240px;
        height: 240px;
    }

    .mascot-assistant-large {
        width: 240px;
        height: 240px;
        font-size: 6.5rem;
        box-shadow: 0 0 45px rgba(79, 163, 255, 0.35);
    }

    .glow-circle {
        width: 320px;
        height: 320px;
    }

    .hero h1 {
        font-size: 2.3rem;
        margin-bottom: 1.25rem;
        letter-spacing: -0.8px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2.25rem;
    }

    .hero-btns {
        gap: 1rem;
    }
}

/* ===== DESKTOP DEVICES (992px and above) ===== */
@media (min-width: 992px) {
    .container {
        max-width: 1200px;
    }

    .hero h1 {
        font-size: 3.8rem;
    }

    .hero-split {
        gap: 4rem;
    }
}

/* ===== LARGE DESKTOP (1400px and above) ===== */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero h1 {
        font-size: 4.2rem;
    }

    .section-title {
        font-size: 3.5rem;
    }

    .hero-mascot {
        width: 450px;
        height: 450px;
    }

    .mascot-assistant-large {
        width: 360px;
        height: 360px;
        font-size: 11rem;
    }

    .glow-circle {
        width: 500px;
        height: 500px;
    }
}

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

.services-row {
    grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 1200px) {
    .services-row {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

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

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }
    
    .services-row {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero-btns, .cta-section .d-flex {
        flex-direction: column;
        width: 100%;
    }

    .hero-split {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
        align-items: center;
    }

    .btn {
        width: 100%;
    }
}

/* Services Page Specific */
.services-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 70% 50%, rgba(30, 58, 95, 0.4) 0%, rgba(11, 15, 20, 1) 100%);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 10;
}

.service-detail-card {
    padding: 3rem !important;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-detail-card:hover {
    background: rgba(79, 163, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-10px);
}

.service-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(79, 163, 255, 0.1);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(79, 163, 255, 0.2);
}

.service-main {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.detail-icon {
    font-size: 3.5rem;
    background: var(--background);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.detail-text h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.feature-list {
    margin-bottom: 3rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.feature-list .check {
    color: var(--primary);
    font-weight: 800;
}

@media (max-width: 992px) {
    .services-detailed-grid {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }
    
    .services-hero {
        min-height: auto;
        padding: 6rem 0;
    }
}

.features-section .grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem;
}

/* Pricing Page Specific */
.pricing-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 30% 50%, rgba(30, 58, 95, 0.4) 0%, rgba(11, 15, 20, 1) 100%);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(79, 163, 255, 0.3);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    background: rgba(79, 163, 255, 0.05);
    transform: scale(1.05);
    z-index: 5;
}

.pricing-card.featured:hover {
    transform: scale(1.06) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: var(--background);
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    border-bottom-left-radius: 16px;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 2.5rem 0;
    line-height: 1;
}

.price .period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 5px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 3rem;
    padding: 0;
    list-style: none;
    display: inline-block;
    width: 100%;
}

.pricing-features li {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pricing-features .check {
    color: var(--primary);
    font-weight: 800;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .pricing-hero {
        min-height: auto;
        padding: 6rem 0;
    }
}

@media (max-width: 992px) {
    [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

/* ===== GAMES HOSTING SECTION ===== */
.games-hosting-section {
    width: 100%;
}

.games-hosting-wrapper-full {
    max-width: 1200px;
    margin: 0 auto;
}

.games-populair-section,
.games-selectie-section {
    margin-bottom: 4rem;
    padding: 0 1.5rem;
}

.games-populair-section h2,
.games-selectie-section h2,
.games-search-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 2rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.games-search-section {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1.5rem;
}

.games-header-section h1 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFFFFF 0%, #4FA3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 1rem 0;
}

.games-header-section p {
    font-size: 1.1rem;
    color: #D1D5DB;
    max-width: 700px;
    line-height: 1.6;
    margin: 0 auto;
}

.games-search-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 2rem;
    max-width: 500px;
    margin-left: 2rem;
    margin-right: auto;
}

.games-search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    background: rgba(30, 58, 95, 0.3);
    border: 2px solid rgba(79, 163, 255, 0.2);
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.games-search-input::placeholder {
    color: var(--text-muted);
}

.games-search-input:focus {
    outline: none;
    border-color: rgba(79, 163, 255, 0.5);
    background: rgba(30, 58, 95, 0.5);
    box-shadow: 0 0 20px rgba(79, 163, 255, 0.15);
}

.games-search-container .search-icon {
    position: absolute;
    right: 1.5rem;
    font-size: 1.2rem;
    color: var(--text-muted);
    pointer-events: none;
}

.games-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    width: 100%;
}

.game-card {
    display: flex;
    gap: 0;
    background: rgba(30, 58, 95, 0.3);
    border: 2px solid rgba(79, 163, 255, 0.15);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.320, 1);
    cursor: pointer;
    height: 280px;
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: rgba(79, 163, 255, 0.35);
    background: rgba(30, 58, 95, 0.35);
    box-shadow: 0 25px 70px rgba(79, 163, 255, 0.2);
}

.game-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.game-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(11, 15, 20, 0.95) 0%, rgba(11, 15, 20, 0.85) 30%, rgba(11, 15, 20, 0.4) 70%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.game-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    position: relative;
    z-index: 3;
}

.game-card-top {
    padding: 2rem 2rem 0 2rem;
    position: relative;
    z-index: 3;
}

.game-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.game-card-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-card-title-price {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.game-card-title-price h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #4FA3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.game-card-price {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

.game-card-description {
    padding: 1.5rem 2rem;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    max-width: 55%;
}

.game-card-description p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    word-wrap: break-word;
}

.game-card-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.game-card-btn {
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 5;
    width: fit-content;
    text-decoration: none;
    display: inline-block;
}

.game-card-btn:hover {
    background: #3A88CC;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 163, 255, 0.3);
}

.game-card-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
    padding: 0;
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 3;
}

.game-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.2;
    font-weight: 500;
    white-space: nowrap;
}

.feature-check {
    color: var(--primary);
    font-weight: 800;
    flex-shrink: 0;
}

.games-empty-state {
    text-align: center;
    padding: 3rem;
    background: rgba(30, 58, 95, 0.3);
    border: 2px dashed rgba(79, 163, 255, 0.2);
    border-radius: 16px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* PACKAGE MODAL */
.package-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 2rem;
}

.package-modal.active {
    display: flex;
}

.package-modal-content {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.4) 0%, rgba(11, 15, 20, 0.6) 100%);
    border: 2px solid rgba(79, 163, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    backdrop-filter: blur(10px);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background: rgba(79, 163, 255, 0.2);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 2rem;
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 0.5rem 0;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.modal-packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 600px;
}

.games-hosting-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 5rem;
    align-items: flex-start;
    padding: 0 3rem;
    max-width: 100%;
}

.games-sidebar-full {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(79, 163, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF 0%, #4FA3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.games-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.game-menu-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 1.75rem;
    background: rgba(30, 58, 95, 0.3);
    border: 2px solid rgba(79, 163, 255, 0.15);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.320, 1);
    color: var(--text-muted);
    font-weight: 600;
    width: 100%;
    text-align: left;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.game-menu-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(79, 163, 255, 0.2), transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.game-menu-btn:hover {
    background: rgba(30, 58, 95, 0.5);
    border-color: rgba(79, 163, 255, 0.4);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(79, 163, 255, 0.15);
}

.game-menu-btn:hover::before {
    opacity: 1;
}

.game-menu-btn.active {
    background: linear-gradient(135deg, rgba(79, 163, 255, 0.35) 0%, rgba(79, 163, 255, 0.15) 100%);
    border-color: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 0 30px rgba(79, 163, 255, 0.4), inset 0 0 20px rgba(79, 163, 255, 0.1);
    transform: scale(1.08);
}

.game-menu-btn.active::before {
    opacity: 1;
}

.game-menu-icon {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 40px;
}

.game-menu-title {
    font-size: 1rem;
    line-height: 1.3;
    flex: 1;
    font-weight: 600;
}

.games-main-content {
    position: relative;
}

.games-filter-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
    padding: 0;
    background: transparent;
    border: none;
    backdrop-filter: none;
}

.filter-search {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 2rem;
    background: rgba(30, 58, 95, 0.2);
    border: 1px solid rgba(79, 163, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.search-input {
    width: 100%;
    padding: 1.25rem 1.5rem 1.25rem 3.5rem;
    background: rgba(11, 15, 20, 0.5);
    border: 1.5px solid rgba(79, 163, 255, 0.2);
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(11, 15, 20, 0.8);
    box-shadow: 0 0 20px rgba(79, 163, 255, 0.2);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-input:focus::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    font-size: 1.4rem;
    pointer-events: none;
    color: rgba(79, 163, 255, 0.6);
    transition: color 0.3s ease;
}

.search-input:focus + .search-icon {
    color: var(--primary);
}

.filter-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 2rem;
    background: rgba(30, 58, 95, 0.2);
    border: 1px solid rgba(79, 163, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.filter-select {
    padding: 1rem 1.25rem;
    background: rgba(11, 15, 20, 0.5);
    border: 1.5px solid rgba(79, 163, 255, 0.2);
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:hover,
.filter-select:focus {
    border-color: var(--primary);
    background: rgba(11, 15, 20, 0.8);
    outline: none;
}

.filter-select option {
    background: #0B0F14;
    color: #FFFFFF;
}

.games-panels-container {
    position: relative;
}

.game-content-panel {
    display: none;
    animation: slideInContent 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    margin-bottom: 8rem;
}

.game-content-panel.active {
    display: block;
    margin-bottom: 0;
}

.game-content-panel.show-all {
    display: block;
    margin-bottom: 8rem;
}

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

.all-games-showcase {
    display: none;
    animation: slideInContent 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.all-games-showcase.active {
    display: block;
}

.games-showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.game-showcase-card {
    padding: 0;
    background: rgba(30, 58, 95, 0.3) no-repeat center/cover;
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(79, 163, 255, 0.15);
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.320, 1);
    display: grid;
    grid-template-columns: 320px 1fr;
    align-items: stretch;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.game-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(11, 15, 20, 0.95) 0%, rgba(11, 15, 20, 0.85) 30%, rgba(11, 15, 20, 0.4) 70%, transparent 100%);
    z-index: 2;
    border-radius: 16px;
    pointer-events: none;
}

.game-showcase-card:hover {
    transform: translateY(-10px);
    border-color: rgba(79, 163, 255, 0.35);
    background: rgba(30, 58, 95, 0.35);
    box-shadow: 0 25px 70px rgba(79, 163, 255, 0.2);
}

.showcase-icon {
    font-size: 2rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 60px;
}

.game-showcase-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #4FA3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 5;
}

.game-showcase-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0 0 1rem 0;
    flex: 1;
    position: relative;
    z-index: 5;
}

.showcase-cta {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
}

.game-showcase-card:hover .showcase-cta {
    color: #FFFFFF;
    transform: translateX(8px);
}

.game-showcase-card > div {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 2rem;
    position: relative;
    z-index: 5;
    grid-column: 2;
    grid-row: 1;
}

.game-header {
    margin-bottom: 4rem;
}

.game-title-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #4FA3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.game-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    line-height: 1.6;
    margin: 0;
}

.pricing-packages-scroll {
    overflow-x: auto;
    padding-bottom: 1rem;
    margin-bottom: 10rem;
}

.pricing-packages-scroll::-webkit-scrollbar {
    height: 8px;
}

.pricing-packages-scroll::-webkit-scrollbar-track {
    background: rgba(79, 163, 255, 0.1);
    border-radius: 10px;
}

.pricing-packages-scroll::-webkit-scrollbar-thumb {
    background: rgba(79, 163, 255, 0.4);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.pricing-packages-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(79, 163, 255, 0.6);
}

.pricing-packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 0;
}

.pricing-packages-scroll .pricing-packages-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    min-width: auto;
    width: 100%;
}

.pricing-packages-scroll {
    overflow-x: visible !important;
    padding-bottom: 2rem;
    margin-bottom: 8rem;
}

.package-card {
    position: relative;
    padding: 2.5rem;
    background: rgba(30, 58, 95, 0.3);
    border: 2px solid rgba(79, 163, 255, 0.15);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    display: flex;
    flex-direction: column;
}



.package-card:hover {
    transform: translateY(-10px);
    border-color: rgba(79, 163, 255, 0.35);
    background: rgba(30, 58, 95, 0.35);
    box-shadow: 0 25px 70px rgba(79, 163, 255, 0.2);
}

.package-card.featured {
    background: linear-gradient(135deg, rgba(79, 163, 255, 0.2) 0%, rgba(79, 163, 255, 0.05) 100%);
    border-color: var(--primary);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 25px 70px rgba(79, 163, 255, 0.25);
}

.featured-badge {
    position: absolute;
    top: 12px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #2D80CC 100%);
    color: #FFFFFF;
    padding: 0.6rem 1.5rem;
    border-radius: 22px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 15;
    box-shadow: 0 8px 25px rgba(79, 163, 255, 0.3);
}

.package-card h4 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #FFFFFF;
    position: relative;
    z-index: 5;
}

.package-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0.5rem 0 1.5rem 0;
    line-height: 1;
    position: relative;
    z-index: 5;
}

.package-price span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.35rem;
    position: relative;
    z-index: 5;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.2;
}

.package-features .check {
    color: var(--primary);
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.btn-sm {
    padding: 0.85rem 1.5rem !important;
    font-size: 0.95rem !important;
}

.package-card .btn-primary {
    margin-top: auto;
    width: 100%;
}

.game-info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.info-card {
    padding: 2.5rem;
    background: rgba(30, 58, 95, 0.25);
    border: 1.5px solid rgba(79, 163, 255, 0.15);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(79, 163, 255, 0.35);
    background: rgba(30, 58, 95, 0.35);
}

.info-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.info-list .check {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ===== GAMES HOSTING RESPONSIVE ===== */
@media (max-width: 1400px) {
    .games-hosting-wrapper {
        grid-template-columns: 280px 1fr;
        gap: 4rem;
    }
    
    .filter-options {
        min-width: 320px;
    }
}

@media (max-width: 1200px) {
    .games-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .filter-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-packages-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .pricing-packages-scroll .pricing-packages-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .package-card {
        grid-template-columns: 280px 1fr;
        height: 220px;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
}

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

    .games-hosting-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .games-sidebar-full {
        position: sticky;
        top: 100px;
        order: -1;
    }
    
    .games-menu {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .game-menu-btn {
        flex-direction: row;
        padding: 1rem 1.25rem;
        gap: 1rem;
    }
    
    .game-menu-title {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .game-menu-icon {
        font-size: 1.6rem;
        min-width: 35px;
    }
    
    .filter-options {
        grid-template-columns: 1fr;
    }
    
    .pricing-packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-packages-scroll .pricing-packages-grid {
        grid-template-columns: repeat(3, 220px);
        gap: 1rem;
    }
    
    .game-info-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .games-hosting-section {
        padding: 3rem 0;
    }
    
    .games-header-section {
        padding: 0 1.5rem;
    }
    
    .games-header-section h1 {
        font-size: 2rem;
    }
    
    .games-header-section p {
        font-size: 0.95rem;
    }
    
    .games-search-container {
        max-width: calc(100% - 3rem);
    }
    
    .game-card {
        height: auto;
        flex-direction: column;
    }
    
    .game-card-content {
        min-height: auto;
        align-items: flex-start;
        flex-direction: column;
    }
    
    .game-card-top {
        padding: 1.5rem 1.5rem 0 1.5rem;
    }
    
    .game-card-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .game-card-description {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
    }
    
    .game-card-description p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .game-card-icon {
        font-size: 2rem;
    }
    
    .game-card-title-price h3 {
        font-size: 1.25rem;
    }
    
    .game-card-price {
        font-size: 0.85rem;
    }
    
    .game-card-btn {
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .game-card-features {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .package-modal-content {
        padding: 2rem;
        border-radius: 16px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-packages-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .games-menu {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .game-menu-btn {
        padding: 0.8rem 0.6rem;
        gap: 0.5rem;
    }
    
    .game-menu-title {
        font-size: 0.65rem;
    }
    
    .game-menu-icon {
        font-size: 1.2rem;
        min-width: 28px;
    }
    
    .games-filter-section {
        gap: 1rem;
    }
    
    .filter-options,
    .filter-search {
        padding: 1.25rem;
    }
    
    .filter-options {
        grid-template-columns: 1fr;
    }
    
    .search-input,
    .filter-select {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }
    
    .game-title-section h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .game-subtitle {
        font-size: 0.9rem;
    }
    
    .game-header {
        margin-bottom: 2.5rem;
    }
    
    .pricing-packages-grid {
        gap: 1.25rem;
        margin-bottom: 3rem;
    }
    
    .pricing-packages-scroll {
        margin-bottom: 3rem;
        padding-bottom: 0.5rem;
    }
    
    .pricing-packages-scroll .pricing-packages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    .featured-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
    
    .package-card h4 {
        font-size: 1rem;
        margin: 1rem 0 0.75rem 0;
    }
    
    .package-price {
        font-size: 1.5rem;
        margin: 0.75rem 0 1.5rem 0;
    }
    
    .package-features li {
        padding: 0.5rem 0;
        font-size: 0.85rem;
    }
    
    .game-info-section {
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .info-card h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .info-list li {
        padding: 0.5rem 0;
        font-size: 0.85rem;
    }
}

/* ===== ENHANCED GAME HOSTING STYLES ===== */
.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.package-header h4 {
    margin: 0;
    flex: 1;
    font-size: 1.3rem !important;
}

.support-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    background: rgba(79, 163, 255, 0.2);
    color: rgba(79, 163, 255, 0.95);
    border: 1px solid rgba(79, 163, 255, 0.3);
    flex-shrink: 0;
}

.support-badge.high {
    background: rgba(107, 207, 155, 0.2);
    color: rgba(107, 207, 155, 0.95);
    border-color: rgba(107, 207, 155, 0.3);
}

.support-badge.premium {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(79, 163, 255, 0.15) 100%);
    color: #FFD700;
    border-color: rgba(255, 215, 0, 0.3);
}

.price-section {
    position: relative;
    margin: 0;
    padding: 0 1.75rem;
}

.package-card .package-price {
    margin: 0;
    position: relative;
}

.featured-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: absolute;
    top: -12px;
    left: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, #2D80CC 100%);
    color: #FFFFFF;
    padding: 0.6rem 1.25rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(79, 163, 255, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

.badge-icon {
    font-size: 1rem;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(79, 163, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(79, 163, 255, 0.4);
    }
}

.package-card:hover {
    animation: cardHoverGlow 0.3s ease-out;
}

@keyframes cardHoverGlow {
    from {
        box-shadow: 0 20px 60px rgba(79, 163, 255, 0.15);
    }
    to {
        box-shadow: 0 25px 80px rgba(79, 163, 255, 0.25);
    }
}

.package-features li {
    animation: featureSlide 0.4s ease-out backwards;
}

.package-features li:nth-child(1) { animation-delay: 0.1s; }
.package-features li:nth-child(2) { animation-delay: 0.2s; }
.package-features li:nth-child(3) { animation-delay: 0.3s; }
.package-features li:nth-child(4) { animation-delay: 0.4s; }

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

.game-showcase-card {
    position: relative;
    overflow: hidden;
}

.game-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 163, 255, 0.1), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.game-showcase-card:hover::before {
    left: 100%;
}

.showcase-icon {
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.game-showcase-card:hover .showcase-icon {
    animation: iconFloatFast 2s ease-in-out infinite;
}

@keyframes iconFloatFast {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-12px) scale(1.1);
    }
}

.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: scale(0.98);
}

/* Game Info Cards Enhancement */
.info-card {
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(79, 163, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(79, 163, 255, 0.15);
}

.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.4rem;
}

/* Game Menu Button Enhancement */
.game-menu-btn {
    position: relative;
}

.game-menu-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    transition: width 0.3s ease;
}

.game-menu-btn:hover::after,
.game-menu-btn.active::after {
    width: 100%;
}

/* Showcase Grid Enhancement */
.games-showcase-grid {
    perspective: 1000px;
}

.game-showcase-card {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.game-showcase-card:hover {
    filter: drop-shadow(0 20px 40px rgba(79, 163, 255, 0.2));
}

/* All Packages Grid */
.all-packages-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 2rem !important;
}

.pricing-packages-scroll .all-packages-grid {
    overflow: visible !important;
}

.all-games-showcase .pricing-packages-scroll {
    overflow: visible !important;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Responsive enhancements for enhanced styles */
@media (max-width: 1024px) {
    .support-badge {
        padding: 0.35rem 0.75rem;
        font-size: 0.7rem;
    }
    
    .package-header {
        flex-direction: column;
    }
    
    .all-packages-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

/* ===== BLOGS PAGE ===== */
.blog-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(79, 163, 255, 0.1);
    border: 1px solid rgba(79, 163, 255, 0.2);
    border-radius: 24px;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
}

.filter-btn:hover {
    background: rgba(79, 163, 255, 0.15);
    color: var(--primary);
    border-color: var(--primary);
}

.filter-btn.active {
    background: linear-gradient(135deg, #4FA3FF 0%, #3b8fe0 100%);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(79, 163, 255, 0.3);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(79, 163, 255, 0.2);
    border-color: rgba(79, 163, 255, 0.5);
}

.blog-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.blog-icon {
    font-size: 2.5rem;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 163, 255, 0.1);
    border-radius: 12px;
}

.blog-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.blog-category {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: rgba(79, 163, 255, 0.2);
    color: var(--primary);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    width: fit-content;
}

.blog-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.blog-content {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

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

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(79, 163, 255, 0.1);
}

.blog-author {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.btn-read-more {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-read-more:hover {
    color: var(--text-white);
    transform: translateX(5px);
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

/* ===== CREATE BLOG PAGE ===== */
.create-blog-section {
    min-height: 100vh;
}

.create-blog-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

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

.create-blog-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #4FA3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.create-blog-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.create-blog-form {
    padding: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-white);
    font-weight: 600;
    font-size: 1rem;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    background-color: rgba(11, 15, 20, 0.8);
    border: 1px solid rgba(79, 163, 255, 0.2);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: rgba(11, 15, 20, 1);
    box-shadow: 0 0 0 3px rgba(79, 163, 255, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    min-height: 300px;
    resize: vertical;
    max-height: 600px;
}

.char-count {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(79, 163, 255, 0.1);
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.media-uploader {
    border: 2px dashed rgba(79, 163, 255, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(79, 163, 255, 0.05);
}

.media-uploader:hover {
    border-color: var(--primary);
    background: rgba(79, 163, 255, 0.1);
}

.media-uploader.dragover {
    border-color: var(--primary);
    background: rgba(79, 163, 255, 0.15);
}

.media-uploader input[type="file"] {
    display: none;
}

.upload-hint {
    color: var(--text-muted);
}

.upload-hint p {
    margin: 0;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.media-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.media-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
}

.media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid rgba(79, 163, 255, 0.2);
    border-radius: 8px;
}

.video-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(79, 163, 255, 0.1);
    border: 1px solid rgba(79, 163, 255, 0.2);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.remove-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: var(--danger);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn:hover {
    transform: scale(1.1);
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(79, 163, 255, 0.1);
}

.form-actions .btn {
    flex: 1;
    padding: 1.2rem;
    font-size: 1rem;
}

.form-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(79, 163, 255, 0.05);
    border-left: 3px solid var(--primary);
    border-radius: 6px;
}

.form-note p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .create-blog-form {
        padding: 2rem;
    }
    
    .create-blog-header h1 {
        font-size: 1.8rem;
    }
    
    .media-preview {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}
    @keyframes iconFloatFast {
        0%, 100% {
            transform: translateY(0px) scale(1);
        }
        50% {
            transform: translateY(-8px) scale(1.05);
        }
    }
    
    .all-packages-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

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

.verification-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

.verification-card {
    background: rgba(22, 27, 34, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(79, 163, 255, 0.1);
    border-radius: 24px;
    padding: 3.5rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.verification-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: bounce 2s infinite;
}

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

.verification-title {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.verification-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.email-display {
    background: rgba(79, 163, 255, 0.08);
    border: 1px solid rgba(79, 163, 255, 0.2);
    border-radius: 12px;
    padding: 1.2rem;
    margin: 2rem 0;
    font-weight: 600;
    color: var(--primary);
    font-size: 1.05rem;
    word-break: break-all;
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-box {
    background: rgba(79, 163, 255, 0.05);
    border: 1px solid rgba(79, 163, 255, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.info-box:hover {
    background: rgba(79, 163, 255, 0.1);
    border-color: rgba(79, 163, 255, 0.3);
    transform: translateY(-4px);
}

.info-box-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    display: block;
}

.info-box-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-box-value {
    font-size: 1.3rem;
    color: var(--text-white);
    font-weight: 700;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin: 2.5rem 0;
    flex-direction: column;
}

.action-buttons a,
.action-buttons button {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-lg {
    background: linear-gradient(135deg, var(--primary) 0%, #357ABD 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 163, 255, 0.3);
}

.btn-primary-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 163, 255, 0.4);
}

.btn-secondary-lg {
    background: rgba(79, 163, 255, 0.1);
    color: var(--primary);
    border: 1px solid rgba(79, 163, 255, 0.3);
}

.btn-secondary-lg:hover {
    background: rgba(79, 163, 255, 0.15);
    border-color: var(--primary);
}

.steps-container {
    background: rgba(79, 163, 255, 0.03);
    border: 1px solid rgba(79, 163, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.steps-title {
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    align-items: flex-start;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    background: var(--primary);
    color: var(--background);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.step-content {
    flex: 1;
}

.step-title {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.3rem;
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.spam-warning {
    background: rgba(255, 159, 79, 0.1);
    border-left: 4px solid #FF9F4F;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.spam-warning strong {
    color: #FF9F4F;
    display: block;
    margin-bottom: 0.5rem;
}

.divider {
    height: 1px;
    background: rgba(79, 163, 255, 0.1);
    margin: 2rem 0;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 2rem;
}

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

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

@media (max-width: 600px) {
    .verification-card {
        padding: 2rem;
    }

    .verification-title {
        font-size: 1.5rem;
    }

    .verification-icon {
        font-size: 3rem;
    }

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

    .action-buttons {
        flex-direction: column;
    }

    .action-buttons a,
    .action-buttons button {
        width: 100%;
    }
}

.create-blog-form-container {
    padding: 2.5rem;
    border: 1px solid rgba(79, 163, 255, 0.2);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    color: var(--text-white);
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
}

.form-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

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

.form-label {
    display: block;
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.label-text {
    display: inline;
}

.required-star {
    color: #FF6B6B;
    margin-left: 0.25rem;
}

.form-control {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(79, 163, 255, 0.2);
    color: var(--text-white);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(79, 163, 255, 0.08);
    box-shadow: 0 0 15px rgba(79, 163, 255, 0.2);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-help {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.rich-editor {
    resize: vertical;
    min-height: 300px;
    font-family: 'Courier New', monospace;
    padding: 1rem;
}

.char-count {
    margin-top: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.banner-upload-section,
.media-upload-section {
    background: rgba(79, 163, 255, 0.05);
    border: 1px solid rgba(79, 163, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.section-title {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0 0 1.5rem 0;
}

.media-upload-group {
    margin-bottom: 1.5rem;
}

.media-upload-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.media-upload-header h4 {
    color: var(--text-white);
    margin: 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.media-limit {
    background: rgba(107, 207, 155, 0.2);
    color: #6BCF9B;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.upload-drop-zone {
    border: 2px dashed rgba(79, 163, 255, 0.3);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    background: rgba(79, 163, 255, 0.03);
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-drop-zone:hover {
    border-color: var(--primary);
    background: rgba(79, 163, 255, 0.08);
}

.upload-drop-zone i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.upload-drop-zone p {
    color: var(--text-white);
    margin: 0.5rem 0;
    font-weight: 500;
}

.upload-drop-zone small {
    color: var(--text-muted);
    display: block;
}

.media-gallery {
    margin-top: 2rem;
}

.media-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
}

.media-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(79, 163, 255, 0.1);
}

.media-item img,
.media-item video {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.media-item-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 107, 107, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    transition: all 0.2s ease;
}

.media-item:hover .media-item-remove {
    opacity: 1;
}

.upload-progress {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(79, 163, 255, 0.08);
    border-radius: 8px;
}

.progress-bar {
    height: 6px;
    background: rgba(79, 163, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-bar::after {
    content: '';
    display: block;
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
    animation: progress 3s ease-in-out infinite;
}

@keyframes progress {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
}

#progressText {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.author-info-box {
    background: rgba(79, 163, 255, 0.08);
    border: 1px solid rgba(79, 163, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.author-info-box h4 {
    color: var(--text-white);
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-info-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4FA3FF, #2874d6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-name {
    color: var(--text-white);
    font-weight: 600;
    margin: 0;
}

.author-email {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0.25rem 0 0 0;
}

.info-box {
    background: rgba(79, 163, 255, 0.08);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
}

.info-box i {
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.info-box strong {
    color: var(--text-white);
    display: block;
    margin-bottom: 0.5rem;
}

.info-box ul {
    color: var(--text-muted);
    margin: 0;
    padding-left: 1.5rem;
}

.info-box li {
    margin-bottom: 0.3rem;
}

.category-filter-box {
    padding: 1.5rem;
    border: 1px solid rgba(79, 163, 255, 0.2);
}

.filter-title {
    color: var(--primary);
    font-size: 1.1rem;
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.category-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(79, 163, 255, 0.05);
    border: 1px solid rgba(79, 163, 255, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-option:hover {
    background: rgba(79, 163, 255, 0.12);
    border-color: rgba(79, 163, 255, 0.3);
}

.category-option.selected {
    background: rgba(79, 163, 255, 0.2);
    border-color: var(--primary);
}

.category-icon {
    font-size: 1.3rem;
}

.category-name {
    color: var(--text-white);
    font-weight: 500;
}

.category-description {
    padding: 1rem;
    background: rgba(79, 163, 255, 0.05);
    border-radius: 8px;
}

.category-description h4 {
    color: var(--text-white);
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
}

.category-description p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
}

.info-box-sidebar {
    padding: 1.5rem;
    border: 1px solid rgba(79, 163, 255, 0.2);
}

.info-box-sidebar h4 {
    color: var(--primary);
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

.guideline-item {
    margin-bottom: 1rem;
}

.guideline-item:last-child {
    margin-bottom: 0;
}

.guideline-item strong {
    color: var(--text-white);
    display: block;
    margin-bottom: 0.3rem;
}

.guideline-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.guideline-item ul {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0.3rem 0 0 0;
    padding-left: 1.3rem;
}

.guideline-item li {
    margin-bottom: 0.2rem;
}

.writing-tips-box {
    padding: 1.5rem;
    border: 1px solid rgba(79, 163, 255, 0.2);
}

.writing-tips-box h4 {
    color: var(--primary);
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

.writing-tips-box ul {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
    padding-left: 1.3rem;
}

.writing-tips-box li {
    margin-bottom: 0.5rem;
}

.alert-success-custom {
    background: rgba(107, 207, 155, 0.1);
    border: 1px solid rgba(107, 207, 155, 0.3);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.alert-success-custom i {
    color: #6BCF9B;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert-success-custom h3 {
    color: var(--text-white);
    margin: 0 0 0.5rem 0;
}

.alert-success-custom p {
    color: var(--text-muted);
    margin: 0;
}

.alert-error-custom {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.alert-error-custom i {
    color: #FF6B6B;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.alert-error-custom strong {
    color: var(--text-white);
}

.alert-error-custom ul {
    color: var(--text-muted);
    margin: 0;
}

.alert-warning-custom {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.alert-warning-custom i {
    color: #FFC107;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.alert-warning-custom strong {
    color: var(--text-white);
}

.alert-warning-custom ul {
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 768px) {
    .create-blog-form-container {
        padding: 1.5rem;
    }

    .form-header h2 {
        font-size: 1.5rem;
    }

    .rich-editor {
        min-height: 200px;
    }
}

/* ===== BLOG TOOLBAR ===== */
.blog-toolbar {
    background: linear-gradient(135deg, rgba(22, 27, 34, 0.6) 0%, rgba(30, 58, 95, 0.3) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(79, 163, 255, 0.15);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.toolbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    min-width: 0;
}

.toolbar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.toolbar-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toolbar-value {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.toolbar-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(79, 163, 255, 0.3), transparent);
}

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

.toolbar-create-btn {
    padding: 0.9rem 2rem !important;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    white-space: nowrap;
}

.toolbar-create-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(79, 163, 255, 0.3);
}

@media (max-width: 1024px) {
    .blog-toolbar {
        padding: 2rem 2.5rem;
    }
    
    .toolbar-left {
        gap: 1.5rem;
    }
    
    .toolbar-divider {
        height: 50px;
    }
    
    .toolbar-value {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-toolbar {
        padding: 1.5rem 1.75rem;
        margin-bottom: 2rem;
    }
    
    .toolbar-container {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
        text-align: center;
    }
    
    .toolbar-left {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }
    
    .toolbar-divider {
        display: none;
    }
    
    .toolbar-section {
        width: 100%;
    }
    
    .toolbar-label {
        font-size: 0.8rem;
        letter-spacing: 0.8px;
    }
    
    .toolbar-value {
        font-size: 1.8rem;
    }
    
    .toolbar-right {
        width: 100%;
        justify-content: center;
    }
    
    .toolbar-create-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .blog-toolbar {
        padding: 1.25rem 1.25rem;
        margin-bottom: 1.5rem;
        border-radius: 16px;
    }
    
    .toolbar-label {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
    
    .toolbar-value {
        font-size: 1.6rem;
    }
    
    .toolbar-create-btn {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .blog-toolbar {
        padding: 1rem 1rem;
        margin-bottom: 1.25rem;
        border-radius: 14px;
    }
    
    .toolbar-label {
        font-size: 0.7rem;
        letter-spacing: 0.4px;
    }
    
    .toolbar-value {
        font-size: 1.4rem;
    }
    
    .toolbar-section {
        gap: 0.25rem;
    }
    
    .toolbar-create-btn {
        padding: 0.65rem 1.25rem !important;
        font-size: 0.85rem;
        border-radius: 10px;
    }
    
    .toolbar-create-btn i {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 0.85rem;
    }
    
    .footer-section ul li a,
    .footer-section ul li {
        font-size: 0.8rem;
    }
    
    .footer-tagline p {
        font-size: 1rem;
    }
}

/* STORE PAGE STYLING */
.store-section {
    width: 100%;
}

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

.back-link {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #3A88CC;
    transform: translateX(-5px);
}

.game-header-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.game-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.game-header-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 1rem 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #4FA3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.game-header-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

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

.no-packages {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(30, 58, 95, 0.3);
    border: 2px dashed rgba(79, 163, 255, 0.2);
    border-radius: 16px;
}

.no-packages p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* MINECRAFT STORE LAYOUT */
.minecraft-section {
    width: 100%;
}

.minecraft-features-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem auto 3rem;
    padding: 2rem;
    background: rgba(79, 163, 255, 0.08);
    border: 1px solid rgba(79, 163, 255, 0.2);
    border-radius: 12px;
    max-width: 800px;
}

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

.feature-icon {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-item span:last-child {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.configurator-recommended-container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    margin: 3rem 0;
    align-items: flex-start;
}

.minecraft-configurator {
    padding: 2rem;
    background: rgba(30, 58, 95, 0.3);
    border: 1px solid rgba(79, 163, 255, 0.15);
    border-radius: 12px;
}

.minecraft-configurator h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2rem;
}

.config-section {
    margin-bottom: 2rem;
}

.config-section h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.config-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.config-questions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.config-group-full {
    grid-column: 1 / -1;
}

.config-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.config-group-version {
    padding: 1.5rem;
    background: rgba(30, 58, 95, 0.3);
    border: 2px solid rgba(79, 163, 255, 0.15);
    border-radius: 12px;
}

.config-options-inline {
    flex-wrap: nowrap;
    gap: 1rem;
}

.config-group h4 {
    font-size: 1rem;
    color: #FFFFFF;
    margin: 0;
    font-weight: 600;
}

.config-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
    font-style: italic;
}

.config-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.config-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(79, 163, 255, 0.1);
    border: 2px solid rgba(79, 163, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.config-option input {
    cursor: pointer;
}

.config-option:hover {
    border-color: rgba(79, 163, 255, 0.4);
    background: rgba(79, 163, 255, 0.15);
}

.config-option input:checked + span {
    color: var(--primary);
    font-weight: 600;
}

.config-option input:checked {
    accent-color: var(--primary);
}

.config-options-inline .config-option {
    flex: 1;
    justify-content: center;
}

.config-options-inline .config-option input:checked,
.config-options-inline .config-option input:checked + span {
    color: #FFFFFF;
}

.config-options-inline input:checked + span {
    color: #FFFFFF;
    font-weight: 700;
}

.config-options-inline .config-option input:checked {
    accent-color: var(--primary);
}

/* Highlight entire button when checked */
.config-options-inline label:has(input:checked) {
    background: rgba(79, 163, 255, 0.3);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(79, 163, 255, 0.3);
}

.config-group-toggle {
    padding: 1.5rem;
    background: rgba(30, 58, 95, 0.3);
    border: 2px solid rgba(79, 163, 255, 0.15);
    border-radius: 12px;
}

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

.toggle-content > div:first-child {
    flex: 1;
}

.toggle-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toggle-switch input[type="checkbox"] {
    display: none;
}

.toggle-label-simple {
    display: block;
    width: 60px;
    height: 32px;
    background: rgba(79, 163, 255, 0.2);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid rgba(79, 163, 255, 0.3);
}

.toggle-label-simple::after {
    content: '';
    position: absolute;
    left: 2px;
    top: 2px;
    width: 24px;
    height: 24px;
    background: #FFFFFF;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.toggle-switch input:checked + .toggle-label-simple {
    background: var(--primary);
    border-color: var(--primary);
}

.toggle-switch input:checked + .toggle-label-simple::after {
    left: 32px;
}

.config-slider {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.config-slider input[type="range"] {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(to right, var(--primary) 0%, var(--primary) 50%, rgba(79, 163, 255, 0.2) 50%, rgba(79, 163, 255, 0.2) 100%);
    outline: none;
    -webkit-appearance: none;
}

.config-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(79, 163, 255, 0.4);
    margin-top: -8px;
}

.config-slider input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(79, 163, 255, 0.4);
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    padding: 0 8px;
    gap: 0;
}

.slider-ticks .tick {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-align: center;
    flex: 1;
    line-height: 1.2;
}

.slider-value-display {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.slider-value {
    color: var(--primary);
    font-weight: 600;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.recommended-package-card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    width: auto;
}

.recommended-package-card-container::before {
    content: "DE BESTE KEUZE";
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.recommended-package-section {
    margin: 3rem 0;
}

.recommended-package-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2rem;
    text-align: center;
}

.recommended-package-card {
    width: 320px;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(79, 163, 255, 0.15) 0%, rgba(79, 163, 255, 0.05) 100%);
    border: 2px solid var(--primary);
    border-radius: 12px;
    position: relative;
    text-align: center;
}

.recommended-package-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #FFFFFF;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.recommended-package-card h3 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin: 1rem 0 0.5rem;
}

.recommended-package-card .price {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.recommended-package-card .price span {
    font-size: 1rem;
    font-weight: 500;
    margin-left: 0.5rem;
}

.recommended-package-card .features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.recommended-package-card .features-list li {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(79, 163, 255, 0.1);
}

.recommended-package-card .features-list li:last-child {
    border-bottom: none;
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.all-packages-section {
    margin: 3rem 0 0;
    text-align: center;
}

.all-packages-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.all-packages-section > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0 0 2.5rem;
}

.packages-grid-minecraft {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 100%;
}

.package-card-minecraft {
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.4) 0%, rgba(30, 58, 95, 0.2) 100%);
    border: 1.5px solid rgba(79, 163, 255, 0.2);
    border-radius: 14px;
    transition: all 0.35s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.package-card-minecraft:hover {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.6) 0%, rgba(30, 58, 95, 0.4) 100%);
    border-color: rgba(79, 163, 255, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(79, 163, 255, 0.2);
}

.package-card-minecraft .badge-aanbevolen {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary);
    color: #FFFFFF;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.package-card-minecraft h3 {
    font-size: 1.25rem;
    color: #FFFFFF;
    margin: 0 0 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.price-minecraft {
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.price-minecraft span {
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 0.25rem;
}

.features-minecraft {
    list-style: none;
    padding: 1.25rem 0;
    margin: 1.25rem 0;
    flex-grow: 1;
    border-top: 1px solid rgba(79, 163, 255, 0.15);
    border-bottom: 1px solid rgba(79, 163, 255, 0.15);
}

.features-minecraft li {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0.6rem 0;
    line-height: 1.5;
}

.features-minecraft li:last-child {
    padding-bottom: 0;
}

.package-card-minecraft .btn {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
    padding: 0.9rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.package-card-minecraft .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 163, 255, 0.3);
}

.package-specs-header {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(79, 163, 255, 0.08);
    border: 1px solid rgba(79, 163, 255, 0.2);
    border-radius: 12px;
}

.spec-item {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
}

.package-toggle-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    margin-top: 2rem;
    justify-content: center;
}

.toggle-btn {
    padding: 0.9rem 2.5rem;
    background: rgba(79, 163, 255, 0.08);
    border: 2px solid rgba(79, 163, 255, 0.25);
    color: var(--text-muted);
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.toggle-btn:hover {
    border-color: rgba(79, 163, 255, 0.5);
    background: rgba(79, 163, 255, 0.12);
    transform: translateY(-2px);
}

.toggle-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(79, 163, 255, 0.3);
}

@media (max-width: 1440px) {
    .packages-grid-minecraft {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .packages-grid-minecraft {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .configurator-recommended-container {
        grid-template-columns: 1fr;
    }

    .recommended-package-card-container {
        max-width: 100%;
    }

    .recommended-package-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .packages-grid-minecraft {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .package-card-minecraft {
        padding: 1.5rem 1rem;
    }
}

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