:root {
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --secondary: #ec4899;
    --secondary-light: #f472b6;
    --secondary-dark: #db2777;
    --accent: #f59e0b;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --light-gray: #e2e8f0;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --body-bg: var(--light);
    --body-color: var(--dark);
    --card-bg: #fff;
    --navbar-bg: rgba(255, 255, 255, 0.95);
    --navbar-color: var(--dark);
    --input-bg: #fff;
    --input-color: var(--dark);
    --footer-bg: linear-gradient(135deg, var(--dark) 0%, #111827 100%);
    --footer-color: #fff;
    --border-color: var(--light-gray);
    --shadow-color: rgba(0, 0, 0, 0.05);
    --input-border: var(--light-gray);
    --step-bg: #fff;
}
[data-theme="dark"] {
    --body-bg: #0f172a;
    --body-color: rgba(255, 255, 255, 0.9);
    --card-bg: #1e293b;
    --navbar-bg: rgba(15, 23, 42, 0.95);
    --navbar-color: #f1f5f9;
    --input-bg: #334155;
    --input-color: #f1f5f9;
    --footer-bg: linear-gradient(135deg, #020617 0%, #0f172a 100%);
    --footer-color: #f1f5f9;
    --border-color: #334155;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --input-border: #475569;
    --step-bg: #1e293b;
    --dark-glow: 0 0 15px rgba(99, 102, 241, 0.2);
    --dark-accent: #818cf8;
    --dark-gradient: linear-gradient(to right, #4f46e5, #6366f1);
    --dark-card-hover: #2d3748;
    --dark-bg: #111827;
    --dark-card: #1f2937;
    --dark-border: rgba(255, 255, 255, 0.05);
    --dark-text: rgba(255, 255, 255, 0.95);
    --dark-text-muted: rgba(255, 255, 255, 0.7);
    --dark-hover: rgba(255, 255, 255, 0.1);
    --dark-shadow: rgba(0, 0, 0, 0.3);
}
[data-theme="dark"] body {
    background: var(--dark-bg);
    color: var(--dark-text);
    background-image: radial-gradient(circle at 80% 10%, #1e293b 0%, #0f172a 50%);
    background-attachment: fixed;
}
[data-theme="dark"] .navbar {
    background: var(--dark-card);
    border-color: var(--dark-border);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}
[data-theme="dark"] .hero-section {
    background: linear-gradient(135deg, #4f46e5 0%, #db2777 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
[data-theme="dark"] .card,
[data-theme="dark"] .form-card {
    background-color: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
[data-theme="dark"] .card:hover {
    background-color: var(--dark-card-hover);
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-5px);
}
[data-theme="dark"] .btn-primary {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.25);
    border: none;
}
[data-theme="dark"] .btn-primary:hover {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}
[data-theme="dark"] .form-control:focus {
    background-color: rgba(51, 65, 85, 0.95);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25);
}
[data-theme="dark"] .input-group-text {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    border: none;
}
.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 3px;
}
.alert-custom {
    padding: 0;
    background: transparent;
    border: none;
}
.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #08c 0%, #09f 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 136, 204, 0.3);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-button:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
    color: #fff;
}
.footer {
    background: var(--footer-bg);
    color: var(--footer-color);
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}
.footer h5 {
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer h5 i {
    color: var(--secondary);
}
.footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}
.footer-link:hover {
    color: #fff;
    transform: translateX(5px);
}
.footer-link i {
    margin-right: 8px;
    color: var(--primary-light);
    font-size: 0.8rem;
}
.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    color: #fff;
}
@media (max-width: 992px) {
    .hero-section {
        padding: 40px 20px;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .form-card {
        padding: 30px;
    }
}
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section .lead {
        font-size: 1rem;
    }
    .form-card {
        padding: 25px;
    }
    .card-body {
        padding: 20px;
    }
    .input-group-text,
    .form-control {
        padding: 12px 15px;
    }
    .btn {
        padding: 10px 20px;
    }
    .floating-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }
}
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}
@keyframes countAnimation {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.theme-switch-wrapper {
    display: flex;
    align-items: center;
}
.theme-switch {
    display: inline-block;
    height: 28px;
    position: relative;
    width: 50px;
}
.theme-switch input {
    display: none;
}
.slider {
    background: linear-gradient(to right, var(--primary-light), var(--primary));
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: 0.4s;
    border-radius: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
}
.slider .fa-sun {
    color: #ffd700;
    font-size: 14px;
    margin-left: 4px;
}
.slider .fa-moon {
    color: #fff;
    font-size: 12px;
    margin-right: 6px;
}
.slider:before {
    background-color: #fff;
    bottom: 4px;
    content: "";
    height: 20px;
    left: 4px;
    position: absolute;
    transition: 0.4s;
    width: 20px;
    border-radius: 50%;
    z-index: 2;
}
input:checked + .slider {
    background: linear-gradient(to right, #334155, #0f172a);
}
input:checked + .slider:before {
    transform: translateX(22px);
}
.round {
    border-radius: 34px;
}
[data-theme="dark"] .form-card h3 {
    color: var(--body-color);
}
[data-theme="dark"] .step-content {
    color: var(--body-color);
}
[data-theme="dark"] .faqAccordion .accordion-item,
[data-theme="dark"] #faqAccordion .accordion-item {
    background-color: transparent !important;
}
[data-theme="dark"] #faqAccordion .accordion-header button {
    color: #fff !important;
}
[data-theme="dark"] #statsUsers,
[data-theme="dark"] #statsCalls,
[data-theme="dark"] #statsSpeed {
    color: #fff !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}
[data-theme="dark"] .form-check-label {
    color: var(--body-color);
}
[data-theme="dark"] .hero-section .lead {
    color: rgba(255, 255, 255, 0.95);
}
[data-theme="dark"] .btn {
    color: #fff;
}
[data-theme="dark"] .card * {
    border-color: rgba(99, 102, 241, 0.2);
}
[data-theme="dark"] .navbar-brand,
[data-theme="dark"] .nav-link {
    color: #fff !important;
}
[data-theme="dark"] .navbar-brand:hover,
[data-theme="dark"] .nav-link:hover {
    color: var(--primary-light) !important;
}
[data-theme="dark"] p {
    color: var(--body-color);
}
@media (max-width: 991px) {
    .navbar .theme-switch-wrapper {
        display: flex !important;
        margin-right: 10px;
    }
}
.form-control::placeholder {
    color: #6c757d !important;
    opacity: 1 !important;
}
[data-theme="dark"] .form-control {
    background-color: #334155 !important;
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #f1f5f9 !important;
    border-color: #475569 !important;
}
[data-theme="dark"] .form-control::placeholder {
    color: #94a3b8 !important;
    opacity: 1 !important;
}
[data-theme="dark"] h5.text-danger,
[data-theme="dark"] .card-body h5,
[data-theme="dark"] .card-body .alert p {
    color: rgba(255, 255, 255, 0.9) !important;
}
.redirect-card {
    background-color: var(--card-bg, #fff);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
[data-theme="dark"] .redirect-card {
    background-color: rgba(30, 41, 59, 0.8);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.redirect-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--body-color, #1e293b);
    text-align: center;
}
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.theme-transition {
    transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease !important;
}
.theme-transition * {
    transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease !important;
}
@keyframes darkCardPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}
.form-check-input.is-invalid {
    border-color: #dc3545;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}
.shake {
    animation: shake 0.5s ease-in-out;
}

/* ========================================
   INSTAGRAM PROFILE PREVIEW REDESIGN
   ======================================== */

/* Verification Badge */

/* Dark Theme Styles */

/* Responsive Design */

/* Animation for stats counting */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects for better interactivity */

/* Protection Features Styling */

/* Protection Tips Card Styling */
.protection-tip-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.protection-tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.tip-icon-wrapper {
    top: -20px;
    right: -20px;
    font-size: 100px;
    z-index: 0;
    transform: rotate(-10deg);
}
.badge {
    padding: 0.5em 1em;
    font-weight: 500;
}
[data-theme="dark"] .protection-tip-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(99, 102, 241, 0.2);
}
[data-theme="dark"] .tip-icon-wrapper i {
    color: rgba(255, 255, 255, 0.05);
}
[data-theme="dark"] .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Custom Accordion Styling */
.custom-accordion .accordion-button {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.custom-accordion .accordion-button:not(.collapsed) {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}
.custom-accordion .accordion-button:not(.collapsed) i {
    color: white !important;
}
.custom-accordion .accordion-button::after {
    background-size: 1.25rem;
    transition: all 0.3s ease;
}
.custom-accordion .accordion-button:hover {
    transform: translateX(5px);
}
.custom-accordion .accordion-body {
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* Dark Mode Accordion Styles */
[data-theme="dark"] .custom-accordion .accordion-button {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(99, 102, 241, 0.1);
}
[data-theme="dark"] .custom-accordion .accordion-button:not(.collapsed) {
    background: var(--primary);
    border-color: var(--primary);
}
[data-theme="dark"] .custom-accordion .accordion-body {
    background: rgba(30, 41, 59, 0.4) !important;
}
[data-theme="dark"] .custom-accordion .accordion-button:hover {
    background: rgba(30, 41, 59, 0.9);
}
[data-theme="dark"] .custom-accordion .accordion-button:not(.collapsed):hover {
    background: var(--primary-dark);
}

/* Fix for FAQ text colors in dark mode */
[data-theme="dark"] .accordion-body.bg-light p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Fix for FAQ links in dark mode */
[data-theme="dark"] .accordion-body.bg-light a {
    color: var(--dark-accent) !important;
}
[data-theme="dark"] .accordion-body.bg-light a:hover {
    color: var(--primary-light) !important;
}
[data-theme="dark"] .accordion-button.collapsed {
    background: var(--step-bg) !important;
    color: var(--body-color) !important;
    border-color: var(--border-color) !important;
}
[data-theme="dark"] .accordion-button.collapsed:hover {
    background: rgba(129, 140, 248, 0.1) !important;
    color: var(--dark-accent) !important;
}
[data-theme="dark"] .modern-input {
    background: transparent !important;
    color: var(--input-color) !important;
}
[data-theme="dark"] .modern-input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
}
[data-theme="dark"] .step-number {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 15px;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}
[data-theme="dark"] .card-header {
    color: #fff !important;
    background: linear-gradient(135deg, #3730a3 0%, #4f46e5 100%);
    border-bottom: none;
}
[data-theme="dark"] .card-header.danger-header {
    background: linear-gradient(135deg, var(--success) 0%, var(--info) 100%);
}
[data-theme="dark"] .card-header.success-header {
    background: linear-gradient(135deg, #047857 0%, #10b981 100%);
}
[data-theme="dark"] .telegram-card {
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
    box-shadow: 0 10px 25px rgba(13, 71, 161, 0.3);
}
[data-theme="dark"] .floating-button {
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
    box-shadow: 0 5px 20px rgba(13, 71, 161, 0.4);
}
[data-theme="dark"] .floating-button:hover {
    box-shadow: 0 8px 25px rgba(13, 71, 161, 0.6);
}
[data-theme="dark"] .footer {
    background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
}
[data-theme="dark"] .social-link {
    background-color: rgba(255, 255, 255, 0.05);
}
[data-theme="dark"] .social-link:hover {
    background-color: var(--primary);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}
[data-theme="dark"] .theme-switch .slider {
    background: linear-gradient(to right, #0f172a, #1e293b);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}
[data-theme="dark"] .theme-switch .slider:before {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
[data-theme="dark"] .theme-switch .slider .fa-moon {
    color: #94a3b8;
}

@keyframes darkModeBorder {
    0%, 100% {
        box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.1);
    }
}
[data-theme="dark"] .form-card {
    background-color: #1e293b !important;
    box-shadow: 0 4px 6px var(--shadow-color);
    animation: none;
}
[data-theme="dark"] .footer::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, #020617, transparent);
    pointer-events: none;
}
[data-theme="dark"] .accordion-button::after {
    filter: invert(1);
}
[data-theme="dark"] .accordion-body {
    color: #fff !important;
    background-color: rgba(15, 23, 42, 0.7) !important;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Outfit", sans-serif;
    background-color: var(--body-bg);
    color: var(--body-color);
    padding-top: 70px;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--body-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Navbar Styles */
.navbar {
    background-color: var(--navbar-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px var(--shadow-color);
    padding: 15px 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.navbar-brand {
    font-weight: 700;
    font-size: 24px;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar-brand .logo-icon {
    font-size: 26px;
    color: var(--secondary);
}
.nav-link {
    font-weight: 500;
    color: var(--navbar-color);
    position: relative;
    margin: 0 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}
.nav-link:hover {
    color: var(--primary);
}
.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    bottom: -2px;
    left: 0;
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 0;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler-icon {
    width: 24px;
    height: 17px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
    background: none;
}
.navbar-toggler-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}
.navbar-toggler-icon span:nth-child(1) {
    top: 0;
}
.navbar-toggler-icon span:nth-child(2),
.navbar-toggler-icon span:nth-child(3) {
    top: 7px;
}
.navbar-toggler-icon span:nth-child(4) {
    top: 14px;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
    border-radius: 20px;
    padding: 60px 30px;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.hero-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 10%, transparent 10%);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.4rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-badge i {
    color: #fff;
    font-size: 0.9rem;
}
.hero-badge span {
    color: #fff;
    font-weight: 500;
    font-size: 0.85rem;
}
.hero-text {
    margin-bottom: 1.5rem;
}
.modern-hero h1 {
    color: #fff;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Add subtle animation to the shape in dark mode */
@keyframes shapeFloat {
    0% { transform: rotate(-12deg) translateY(0); }
    50% { transform: rotate(-12deg) translateY(-10px); }
    100% { transform: rotate(-12deg) translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
}

@media (max-width: 576px) {
}

/* Container */
.container {
    max-width: 1200px;
    padding: 0 20px;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.card-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    font-weight: 600;
    padding: 18px 24px;
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}
.card-header.danger-header {
    background: linear-gradient(135deg, var(--success) 0%, var(--info) 100%);
}
.card-header.success-header {
    background: linear-gradient(135deg, var(--success) 0%, var(--info) 100%);
}
.card-body {
    padding: 24px;
}
.form-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px var(--shadow-color);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}
.form-card h3 {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 2rem;
}
.form-card h3 i {
    color: var(--secondary);
    font-size: 1.8rem;
}

/* Form Elements */
.input-group {
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    border: 1px solid var(--input-border);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.input-group-text {
    background-color: var(--primary);
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 15px 20px;
    font-size: 1rem;
}
.form-control {
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    background-color: var(--input-bg);
    color: var(--input-color);
    height: auto;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}

/* Checkbox */
.form-check-input {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
}
.form-check-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.25);
}
.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}
.form-check-label {
    font-size: 0.95rem;
    cursor: pointer;
}

/* Button Styles */
.btn {
    padding: 12px 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    will-change: transform;
    border: none;
    font-size: 0.9rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }
}
.btn::before {
    display: none;
}
.btn:hover::before {
    display: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}
.btn:hover {
    transform: translateY(-2px);
}
.btn:active {
    transform: translateY(1px);
}
.btn i {
    margin-right: 8px;
}

/* Telegram Card */
.telegram-card {
    background: linear-gradient(135deg, #08c 0%, #09f 100%);
    border-radius: 15px;
    padding: 20px;
    color: #fff;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0, 136, 204, 0.2);
}
.telegram-card i {
    font-size: 1.5rem;
    margin-right: 10px;
}
.telegram-card a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}
.telegram-card a:hover {
    border-color: #fff;
}

/* Step Box */

/* New Step Number Styling */
.step-number-small {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Dark Mode Step Number */
[data-theme="dark"] .step-number-small {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
[data-theme="dark"] .protection-tip-card {
    background: rgba(30, 41, 59, 0.7) !important;
    backdrop-filter: blur(10px);
}

/* Adjust icon size for How To Use section */
.protection-tip-card .tip-icon-wrapper {
    font-size: 80px;
    opacity: 0.1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .protection-tip-card {
        margin-bottom: 1rem;
    }
    .protection-tip-card .tip-icon-wrapper {
        font-size: 60px;
    }
}
.compact-tool-card .tool-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}
.compact-tool-card:hover .tool-icon {
    transform: scale(1.1);
}
[data-theme="dark"] .compact-tool-card .tool-icon {
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    
    .compact-tool-card .tool-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}
.feature-card h5 {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}
.feature-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Dark mode styles for feature cards */
[data-theme="dark"] .feature-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.1);
}
[data-theme="dark"] .feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for feature cards */
@media (max-width: 768px) {
    .feature-card {
        padding: 1.25rem !important;
    }
    
    .feature-card h5 {
        font-size: 1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
}

/* Stats Section Styles */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 10%, transparent 10%);
    background-size: 20px 20px;
    opacity: 0.5;
    animation: backgroundMove 30s linear infinite;
}

@keyframes backgroundMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-20px, -20px);
    }
}

/* Dark mode adjustments */
[data-theme="dark"] .stats-section {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stats-section {
        padding: 2rem 1rem;
    }
}

/* Modern Form Card Styles */
.modern-form {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.form-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}
.form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}
.form-icon i {
    font-size: 2rem;
    color: #fff;
}
.form-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--body-color);
    margin-bottom: 0.5rem;
}
.form-subtitle {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 0;
}
.form-body {
    padding: 1rem 0;
}
.input-wrapper {
    margin-bottom: 1.5rem;
}
.modern-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--body-color);
    margin-bottom: 0.75rem;
}
.modern-label i {
    color: var(--primary);
    font-size: 0.9rem;
}
.modern-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--input-bg);
    border: 2px solid var(--input-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.modern-input-group:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}
.prefix {
    padding: 0.75rem 1rem;
    color: var(--body-color);
    font-weight: 600;
    border-right: 2px solid var(--input-border);
}
.modern-input {
    flex: 1;
    border: none;
    background: none;
    padding: 0.75rem 1rem;
    color: var(--input-color);
    font-size: 1rem;
    outline: none;
    width: 100%;
}
.modern-input::placeholder {
    color: var(--gray);
    opacity: 0.7;
}
.input-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    font-size: 0.85rem;
}
.input-tip {
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.input-count {
    color: var(--gray);
}
.modern-checkbox-container {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--input-bg);
    border: 2px solid var(--input-border);
    border-radius: 12px;
    transition: all 0.3s ease;
    min-height: 60px;
    padding: 0.75rem 1rem;
}
.modern-checkbox-container:hover {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}
.modern-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}
.modern-checkbox-wrapper .form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
}
.modern-checkbox-wrapper .form-check-label {
    cursor: pointer;
    user-select: none;
    flex: 1;
    line-height: 1.4;
    margin: 0;
    font-size: 1rem;
    color: var(--input-color);
}

/* Keep the old modern-checkbox for backward compatibility */

.modern-button {
    position: relative;
    padding: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.modern-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.modern-button .button-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}
.modern-button:not(:disabled):hover .button-effect {
    transform: translateX(100%);
}
.note-alert {
    border-radius: 12px;
    border-left: 5px solid var(--danger);
    background-color: rgba(239, 68, 68, 0.05);
    box-shadow: 0 8px 25px var(--shadow-color);
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.note-alert .note-icon {
    width: 22px;
    height: 22px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.note-alert .note-icon i {
    color: var(--gray);
    font-size: 1rem;
}
.note-alert .note-text {
    flex: 1;
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}
.note-alert .alert-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed var(--primary);
    transition: border-bottom-style 0.2s ease;
}
.note-alert .alert-link:hover {
    border-bottom-style: solid;
}
.btn-close-custom {
    background: none;
    border: none;
    color: var(--gray);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0.5rem;
    font-size: 1.1rem;
}
.btn-close-custom:hover {
    background-color: rgba(239, 68, 68, 0.1);
    transform: rotate(90deg);
    color: var(--body-color);
}

/* Dark Mode Adjustments */
[data-theme="dark"] .modern-form {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border-color: rgba(99, 102, 241, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
[data-theme="dark"] .modern-input-group {
    background: var(--input-bg) !important;
    border-color: var(--input-border) !important;
}
[data-theme="dark"] .modern-checkbox-container {
    background: rgba(51, 65, 85, 0.8);
    border-color: rgba(99, 102, 241, 0.2);
}
[data-theme="dark"] .modern-checkbox-container:hover {
    border-color: var(--primary);
}
[data-theme="dark"] .modern-checkbox-wrapper .form-check-label {
    color: var(--input-color);
}
[data-theme="dark"] .note-alert {
    background-color: rgba(59, 130, 246, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

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

    .form-icon {
        width: 60px;
        height: 60px;
    }

    .form-icon i {
        font-size: 1.5rem;
    }

    .modern-button {
        padding: 0.875rem;
        font-size: 1rem;
    }

    .note-alert {
        padding: 1rem;
    }

    .note-icon {
        width: 32px;
        height: 32px;
    }

    .note-icon i {
        font-size: 1rem;
    }

    /* Mobile-specific checkbox styles */
    
    /* Mobile-specific new checkbox container styles */
    .modern-checkbox-container {
        min-height: 50px;
        padding: 0.5rem 0.75rem;
    }
    
    .modern-checkbox-wrapper .form-check-input {
        width: 1.1rem;
        height: 1.1rem;
    }
    
    .modern-checkbox-wrapper .form-check-label {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}

/* Modern Hero Section */
.modern-hero {
    position: relative;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--success) 0%, var(--info) 100%);
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-shape {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    transform: rotate(-12deg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    pointer-events: none;
    backdrop-filter: blur(10px);
}

/* Dark Mode Hero Styles */
[data-theme="dark"] .modern-hero {
    background: linear-gradient(135deg, rgba(var(--success-rgb), 0.8) 0%, rgba(var(--info-rgb), 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
[data-theme="dark"] .hero-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
[data-theme="dark"] .hero-badge i {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
[data-theme="dark"] .hero-badge span {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
[data-theme="dark"] .modern-hero h1 {
    color: #ffffff;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.1);
}
[data-theme="dark"] .hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Add a subtle glow effect in dark mode */
[data-theme="dark"] .modern-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 50% 0%,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 70%
    );
    pointer-events: none;
}

/* Add subtle animation to the shape in dark mode */
@keyframes shapeFloat {
    0% { transform: rotate(-12deg) translateY(0); }
    50% { transform: rotate(-12deg) translateY(-10px); }
    100% { transform: rotate(-12deg) translateY(0); }
}
[data-theme="dark"] .hero-shape {
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.02) 100%
    );
    backdrop-filter: blur(20px);
    opacity: 0.7;
    animation: shapeFloat 8s ease-in-out infinite;
}

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

    .modern-hero h1 {
        font-size: 2.25rem;
    }

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

@media (max-width: 576px) {
    .modern-hero {
        padding: 1.75rem 1.25rem;
    }

    .modern-hero h1 {
        font-size: 1.75rem;
    }

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

/* Premium Card Design */
.premium-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.premium-card-header {
    background: linear-gradient(135deg, var(--success) 0%, var(--info) 100%);
    padding: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.premium-card-header h3 {
    color: #fff;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.header-icon i {
    color: #fff;
    font-size: 1.5rem;
}
.premium-card-body {
    padding: 2rem;
}
.premium-description {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Dark Mode */
[data-theme="dark"] .premium-card {
    background: var(--dark-card);
    border-color: var(--dark-border);
    box-shadow: 0 10px 30px var(--dark-shadow);
}
[data-theme="dark"] .premium-description {
    color: var(--dark-text-muted);
}

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

    .header-icon {
        width: 40px;
        height: 40px;
    }

    .header-icon i {
        font-size: 1.25rem;
    }

    .premium-card-header h3 {
        font-size: 1.35rem;
    }

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

    .premium-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* Modern Footer */
/* Footer — matches the site's existing light surface + single accent, just
   flat (no gradients) with a tightened, non-stacked mobile layout. */
/* ===== Site Footer (redesign) ===== */
.site-footer {
    --f-surface: var(--card-bg);
    --f-heading: var(--body-color);
    --f-text: var(--gray);
    --f-link: var(--body-color);
    --f-border: var(--border-color);
    --f-chip: rgba(100, 116, 139, 0.1);
    --f-grad: linear-gradient(135deg, var(--success) 0%, var(--info) 100%);
    position: relative;
    margin-top: 4rem;
    background: var(--f-surface);
    border-top: 1px solid var(--f-border);
}
[data-theme="dark"] .site-footer {
    --f-surface: var(--dark-card);
    --f-heading: var(--dark-text);
    --f-text: var(--dark-text-muted);
    --f-link: var(--dark-text);
    --f-border: var(--dark-border);
    --f-chip: rgba(255, 255, 255, 0.06);
}

.footer-tele-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.1rem;
    border-radius: 10px;
    background: #229ed9;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}
.footer-tele-btn:hover {
    background: #1c86ba;
    color: #fff;
    transform: translateY(-2px);
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: space-between;
    gap: 2rem;
    padding: 3rem 0 2.5rem;
}
.footer-col h5 {
    color: var(--f-text);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}
.footer-col a {
    display: block;
    color: var(--f-link);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    transition: color 0.15s ease, transform 0.15s ease;
}
.footer-col a:hover {
    color: var(--info);
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid var(--f-border);
}
.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 1.35rem 0;
}
.footer-bottom p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--f-text);
}

@media (max-width: 640px) {
    .footer-cols {
        grid-template-columns: repeat(2, 1fr);
        justify-content: stretch;
        gap: 2rem 1.5rem;
        padding: 2.5rem 0 2rem;
    }
    .footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 1rem;
    }
}
.tools-section {
    margin: 60px 0;
    padding: 2rem 0;
}
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
    color: var(--text-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.75rem;
}
.title-badge {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--success) 0%, var(--info) 100%);
    border-radius: 12px;
    color: #fff;
}
.title-badge i {
    font-size: 1.25rem;
}
.compact-tool-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
}
.compact-tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: var(--primary);
}
.tool-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--success) 0%, var(--info) 100%);
    border-radius: 14px;
    margin-bottom: 1.25rem;
    color: #fff;
    font-size: 1.5rem;
}
.compact-tool-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}
.compact-tool-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}
.gradient-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, var(--success) 0%, var(--info) 100%);
    color: #fff;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.gradient-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #fff;
}
.gradient-button i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}
.gradient-button:hover i {
    transform: translateX(3px);
}
.gradient-button.telegram-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}
.gradient-button.telegram-btn:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
}
.gradient-button.telegram-btn .button-effect {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
}

/* Success Message Card */

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Dark mode support */

/* Dark mode for Instagram success/error responses */

[data-theme="dark"] .timeline-item {
    color: #a0aec0;
}
[data-theme="dark"] .card {
    background-color: rgba(30, 41, 59, 0.9);
    background: #2d3748;
    border: 1px solid #4a5568;
    color: #e2e8f0;
}
[data-theme="dark"] .card-body {
    color: #e2e8f0;
}
[data-theme="dark"] .card-body p {
    color: rgba(241, 245, 249, 0.9) !important;
}
[data-theme="dark"] .section-title {
    color: var(--dark-text);
}
[data-theme="dark"] .compact-tool-card {
    background: var(--dark-card);
    backdrop-filter: blur(10px);
    border-color: var(--dark-border);
    box-shadow: none;
}
[data-theme="dark"] .compact-tool-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    background: var(--dark-hover);
}
[data-theme="dark"] .compact-tool-card h5 {
    color: var(--dark-text);
}
[data-theme="dark"] .compact-tool-card p {
    color: var(--dark-text-muted);
}
[data-theme="dark"] .gradient-button {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
[data-theme="dark"] .gradient-button:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }

    .title-badge {
        width: 40px;
        height: 40px;
    }

    .title-badge i {
        font-size: 1.1rem;
    }

    .tool-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .compact-tool-card {
        padding: 1.25rem;
    }

    .compact-tool-card h5 {
        font-size: 1rem;
    }
.compact-tool-card p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

    .gradient-button {
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
    }
}
.bg-success { background: #22c55e !important; }
.bg-primary { background: #6366f1 !important; }
.bg-warning { background: #f59e42 !important; }
.bg-danger  { background: #ef4444 !important; }

/* FAQ Category Divider Styles */
.faq-category-divider {
    display: flex;
    align-items: center;
    margin: 2rem 0 1.5rem;
}
.category-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}
.category-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    margin: 0 1rem;
    white-space: nowrap;
}
.category-badge i {
    font-size: 1rem;
}
[data-theme="dark"] .category-badge {
    background: linear-gradient(135deg, var(--dark-accent), var(--primary));
    box-shadow: 0 4px 12px rgba(129, 140, 248, 0.4);
}
[data-theme="dark"] .category-line {
    background: linear-gradient(90deg, transparent, var(--dark-accent), transparent);
}

@media (max-width: 768px) {
    .category-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
        margin: 0 0.5rem;
    }
    
    .category-badge i {
        font-size: 0.9rem;
    }
}

/* Input Icon Styles */
.input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 1rem;
    pointer-events: none;
    z-index: 2;
}
.modern-input-group .modern-input {
    padding-right: 3rem;
}
[data-theme="dark"] .input-icon {
    color: rgba(255, 255, 255, 0.6);
}

/* Premium Legal Pages Styles */
.privacy-simple {
    max-width: 800px;
    margin: 0 auto;
}
.privacy-intro {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
}
.privacy-intro h3 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.privacy-summary-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.25);
}
.privacy-summary-box h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}
.privacy-section-modern {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 8px var(--shadow-color);
}
.privacy-section-modern h4 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}
.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.privacy-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.95rem;
}
.privacy-list li:last-child {
    border-bottom: none;
}
.privacy-contact-section {
    background: var(--light);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 2rem;
}
.privacy-contact-section h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}
.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}
.contact-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    color: white;
}
.contact-btn.telegram {
    background: #0088cc;
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
}
.contact-btn.telegram:hover {
    background: #006699;
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

/* Disclaimer Specific Styles */
.disclaimer-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}
.disclaimer-section:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
}
.disclaimer-section h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.disclaimer-section p {
    line-height: 1.6;
    margin: 0;
    color: var(--body-color);
}
.modern-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.list-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: var(--light);
    border-radius: 8px;
    transition: all 0.3s ease;
}
.list-item:hover {
    background: rgba(99, 102, 241, 0.05);
    transform: translateX(5px);
}
.item-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 0.8rem;
}
.item-icon.success {
    background: var(--success);
    color: white;
}
.item-content {
    flex: 1;
    font-weight: 500;
    line-height: 1.5;
}

/* Dark Theme Support */
[data-theme="dark"] .privacy-intro {
    border-bottom-color: var(--border-color);
}
[data-theme="dark"] .privacy-section-modern {
    background: var(--step-bg);
    border-left-color: var(--dark-accent);
}
[data-theme="dark"] .privacy-contact-section {
    background: var(--step-bg);
}
[data-theme="dark"] .disclaimer-section {
    background: var(--step-bg);
    border-color: var(--border-color);
}
[data-theme="dark"] .disclaimer-section:hover {
    border-color: var(--dark-accent);
    box-shadow: 0 4px 15px rgba(129, 140, 248, 0.2);
}
[data-theme="dark"] .list-item {
    background: var(--dark-card);
}
[data-theme="dark"] .list-item:hover {
    background: rgba(129, 140, 248, 0.1);
}
[data-theme="dark"] .privacy-list li {
    border-bottom-color: var(--border-color);
}

@media (max-width: 768px) {
    .privacy-section-modern,
    .disclaimer-section {
        padding: 1rem;
    }
    
    .privacy-contact-section {
        padding: 1.5rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Premium Alert Redesign */
.custom-alert {
    position: relative;
    padding: 1.5rem;
    border-radius: 16px;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.custom-alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
}
.custom-alert.warning {
    background: linear-gradient(135deg, #fff5e6, #fef3cd);
    border-left: 4px solid #f59e0b;
}
.custom-alert.warning::before {
    background: linear-gradient(to bottom, #f59e0b, #d97706);
}
.custom-alert.info {
    background: linear-gradient(135deg, #e6f3ff, #dbeafe);
    border-left: 4px solid #3b82f6;
}
.custom-alert.info::before {
    background: linear-gradient(to bottom, #3b82f6, #2563eb);
}
.custom-alert.success {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-left: 4px solid #10b981;
}
.custom-alert.success::before {
    background: linear-gradient(to bottom, #10b981, #059669);
}
.alert-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}
.custom-alert.warning .alert-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}
.custom-alert.info .alert-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.custom-alert.success .alert-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.alert-content {
    flex: 1;
}
.alert-content h5 {
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    font-size: 1.1rem;
}
.custom-alert.warning .alert-content h5 {
    color: #92400e;
}
.custom-alert.info .alert-content h5 {
    color: #1e40af;
}
.custom-alert.success .alert-content h5 {
    color: #065f46;
}
.alert-content p {
    margin: 0;
    line-height: 1.6;
    color: #374151;
}

/* Dark Theme for Alerts */
[data-theme="dark"] .custom-alert.warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(217, 119, 6, 0.1));
}
[data-theme="dark"] .custom-alert.info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(37, 99, 235, 0.1));
}
[data-theme="dark"] .custom-alert.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.1));
}
[data-theme="dark"] .custom-alert.warning .alert-content h5 {
    color: #fbbf24;
}
[data-theme="dark"] .custom-alert.info .alert-content h5 {
    color: #60a5fa;
}
[data-theme="dark"] .custom-alert.success .alert-content h5 {
    color: #34d399;
}
[data-theme="dark"] .alert-content p {
    color: rgba(255, 255, 255, 0.8);
}

/* Premium Contact Page Styles */

/* Dark Theme Contact Styles */

/* Premium Protection Page Styles */

.protection-step-enhanced {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.protection-step-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.protection-step-enhanced:hover::before {
    transform: scaleX(1);
}
.protection-step-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
    border-color: var(--primary);
}
.protection-step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

/* Dark Theme Protection Styles */

[data-theme="dark"] .protection-step-enhanced {
    background: var(--step-bg);
    border-color: var(--border-color);
}

/* FAQ Dark Mode Fixes */
[data-theme="dark"] .accordion-body.bg-light {
    background: var(--step-bg) !important;
    color: var(--body-color) !important;
}
[data-theme="dark"] .accordion-button {
    color: #fff !important;
    background-color: rgba(30, 41, 59, 0.9) !important;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}
[data-theme="dark"] .accordion-button:not(.collapsed) {
    color: var(--primary-light) !important;
    background-color: rgba(79, 70, 229, 0.2) !important;
    background: var(--card-bg);
    border-color: var(--border-color);
    box-shadow: none;
}
[data-theme="dark"] .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.25);
    border-color: var(--primary);
}
[data-theme="dark"] .accordion-item {
    background: transparent !important;
    border-color: var(--border-color) !important;
    border: none;
}
[data-theme="dark"] .faq-category-divider .category-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

/* Protection Steps - Simple & Clean */
.protection-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.protection-step {
    text-align: center;
    position: relative;
}
.step-icon-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}
.protection-step .step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
    border: 3px solid var(--body-bg, #fff);
}
.protection-step .step-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    font-size: 1.6rem;
    margin: 0;
}
.step-icon.success {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
}
.step-icon.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}
.step-icon.warning {
    background: linear-gradient(135deg, var(--warning) 0%, #d97706 100%);
}
.step-icon.warning i {
    color: white !important;
}
.step-icon.danger {
    background: linear-gradient(135deg, var(--danger) 0%, #dc2626 100%);
}

/* Protection Metrics */
.protection-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 15px;
    margin-top: 2rem;
}
.metric-item {
    text-align: center;
}
.metric-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.metric-label {
    color: var(--gray);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Protection Tips Grid */
.protection-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.tip-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}
.tip-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}
.tip-content {
    flex: 1;
}
.tip-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--body-color);
}
.tip-content p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}
.tip-action {
    font-size: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.action-tag {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Dark Mode */
[data-theme="dark"] .protection-metrics {
    background: rgba(99, 102, 241, 0.1);
}
[data-theme="dark"] .tip-item {
    background: rgba(255, 255, 255, 0.02);
    border-color: var(--dark-border);
}
[data-theme="dark"] .tip-item:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
[data-theme="dark"] .step-content h5,
[data-theme="dark"] .tip-content h5 {
    color: var(--dark-text);
}
[data-theme="dark"] .step-content p,
[data-theme="dark"] .tip-content p {
    color: var(--dark-text-muted);
}
[data-theme="dark"] .metric-label {
    color: var(--dark-text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .protection-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .protection-metrics {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .protection-tips-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tip-item {
        padding: 1rem;
    }
}

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

/* Premium 404 Error Page Styles */
.premium-404-card {
    width: 100%;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}
.premium-404-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}
.card-content {
    text-align: center;
}
.error-hero {
    margin-bottom: 2rem;
}
.error-animation {
    position: relative;
    margin-bottom: 1.5rem;
}
.error-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    line-height: 1;
}
.digit {
    font-size: 6rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--danger) 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
.error-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s infinite;
}
.error-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--body-color);
    margin-bottom: 0.5rem;
}
.error-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 0;
}
.premium-nav-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}
.premium-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-decoration: none;
    color: var(--body-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.premium-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.05), transparent);
    transition: left 0.6s ease;
}
.premium-nav-item:hover::before {
    left: 100%;
}
.premium-nav-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.15);
}
.premium-nav-item.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: var(--primary);
    color: white;
}
.premium-nav-item.primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.3);
}
.nav-item-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 1.25rem;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}
.premium-nav-item:not(.primary) .nav-item-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}
.nav-item-content {
    flex: 1;
}
.nav-item-content h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}
.nav-item-content span {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}
.premium-nav-item.primary .nav-item-content span {
    opacity: 0.9;
}
.nav-item-arrow {
    font-size: 1rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}
.premium-nav-item:hover .nav-item-arrow {
    opacity: 1;
    transform: translateX(3px);
}
.status-icon.error {
    background: linear-gradient(135deg, var(--danger) 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.4);
}
.premium-btn.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.25);
}
.premium-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
    color: white;
}
.btn-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.countdown-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

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

/* Dark theme support */

/* Mobile responsive */
@media (max-width: 768px) {
}
.countdown-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    opacity: 0.6;
}
.indicator.active {
    opacity: 1;
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}
.indicator i {
    color: var(--primary);
    font-size: 1rem;
}
.indicator span {
    font-weight: 500;
    color: var(--body-color);
    font-size: 0.85rem;
}
.feature-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.feature-card:hover::before {
    transform: scaleX(1);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.2);
}

/* Simple Info Section */

.warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    color: #92400e;
}
.warning i {
    color: #f59e0b;
}
.note {
    font-size: 0.8rem;
    color: var(--gray);
    font-style: italic;
}
.stat {
    text-align: center;
}
.premium-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
    text-decoration: none;
    color: white;
}
.premium-btn .btn-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* Dark Mode Enhancements */

[data-theme="dark"] .warning {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
    color: #fbbf24;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    
    .warning {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .note {
        font-size: 0.75rem;
    }
}
.status-badge:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}
.progress-wrapper {
    max-width: 300px;
    margin: 0 auto;
}
[data-theme="dark"] .status-badge:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
}

/* Mobile responsive for modern status */
@media (max-width: 768px) {
    
    .progress-wrapper {
        max-width: 250px;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-subtitle {
        font-size: 0.9rem;
    }
}

/* Modern Countdown Circle */
.modern-countdown-circle {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto;
}
.countdown-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    filter: drop-shadow(0 8px 16px rgba(99, 102, 241, 0.2));
    position: absolute;
    top: 0;
    left: 0;
}
.countdown-bg-ring {
    fill: none;
    stroke: rgba(99, 102, 241, 0.1);
    stroke-width: 6;
    stroke-linecap: round;
}
.countdown-progress-ring {
    fill: none;
    stroke: url(#circleGradient);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 376.99;
    stroke-dashoffset: 376.99;
    transition: stroke-dashoffset 1s ease-in-out;
    filter: url(#glow);
}
.modern-countdown-circle .countdown-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.modern-countdown-circle .countdown-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #6366f1;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin: 0;
    display: block;
}
.modern-countdown-circle .countdown-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-top: 0.25rem;
    display: block;
}

/* Dark mode styles for modern countdown */
[data-theme="dark"] .countdown-bg-ring {
    stroke: rgba(99, 102, 241, 0.2);
}
[data-theme="dark"] .modern-countdown-circle .countdown-label {
    color: rgba(241, 245, 249, 0.7);
}
[data-theme="dark"] .modern-countdown-circle .countdown-number {
    color: #8b5cf6;
}

/* Mobile responsive for modern countdown */
@media (max-width: 768px) {
    .modern-countdown-circle {
        width: 120px;
        height: 120px;
    }
    
    .modern-countdown-circle .countdown-number {
        font-size: 2rem;
    }
    
    .modern-countdown-circle .countdown-label {
        font-size: 0.7rem;
    }
    
    .countdown-svg {
        filter: drop-shadow(0 6px 12px rgba(99, 102, 241, 0.15));
    }
}
.progress-bar {
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    transition: width 1s linear;
    width: 100%;
    overflow: hidden;
}

/* Dark theme support */

[data-theme="dark"] .progress-bar {
    background: var(--dark-border);
}

/* Mobile responsive */
@media (max-width: 768px) {
}
.countdown-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    z-index: 2;
    position: relative;
    display: block;
    line-height: 1;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
.countdown-label {
    font-size: 0.7rem;
    color: var(--gray);
    font-weight: 500;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.2rem;
    opacity: 0.9;
}

/* Dark theme support */

/* Mobile adjustments */
@media (max-width: 768px) {
.countdown-number {
    font-size: 1.5rem;
}

}

/* Premium Info Sections */

.disclaimer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    margin-top: 1.5rem;
}
.disclaimer i {
    font-size: 1.25rem;
    flex-shrink: 0;
}
.disclaimer span {
    font-weight: 500;
    color: var(--body-color);
}
.step-number {
    position: absolute;
    top: -8px;
    right: 30%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    z-index: 2;
    flex-shrink: 0;
}

/* Dark theme support */

[data-theme="dark"] .step-item {
    background: var(--dark-card);
    border-color: var(--dark-border);
}
[data-theme="dark"] .step-item:hover {
    background: var(--dark-card-hover);
    border-color: var(--dark-accent);
}
[data-theme="dark"] .disclaimer {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.2);
}

/* Mobile responsive */
@media (max-width: 768px) {
    
    .step-item {
        padding: 1rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

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

/* Dark theme support */
[data-theme="dark"] .premium-404-card {
    background: var(--dark-card);
    border-color: var(--dark-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
[data-theme="dark"] .premium-nav-item {
    background: var(--dark-card);
    border-color: var(--dark-border);
}
[data-theme="dark"] .premium-nav-item:hover {
    background: var(--dark-card-hover);
    border-color: var(--dark-accent);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .premium-404-card {
        padding: 2rem 1.5rem;
    }
    
    .digit {
        font-size: 4rem;
    }
    
    .error-heading {
        font-size: 1.5rem;
    }
    
    .premium-nav-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .premium-nav-item {
        padding: 1rem;
    }
    
    .nav-item-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .nav-item-content h4 {
        font-size: 1rem;
    }
    
    .nav-item-content span {
        font-size: 0.85rem;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes explode {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
}

/* Maintenance Page Styles */
.maintenance-icon-container {
    position: relative;
    display: inline-block;
    margin: 2rem 0;
}
.gear-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}
.gear-1, .gear-2 {
    position: absolute;
    font-size: 3rem;
    color: var(--warning);
    animation: rotate 4s linear infinite;
}
.gear-1 {
    top: 0;
    left: 0;
}
.gear-2 {
    bottom: 0;
    right: 0;
    animation-direction: reverse;
    font-size: 2.5rem;
}
.tool-1, .tool-2 {
    position: absolute;
    font-size: 2rem;
    color: var(--primary);
    animation: float 3s ease-in-out infinite;
}
.tool-1 {
    top: 10px;
    right: 10px;
    animation-delay: -1s;
}
.tool-2 {
    bottom: 10px;
    left: 10px;
    animation-delay: -2s;
}
.progress-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border: 3px solid rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 2s linear infinite;
}
.progress-fill {
    height: 100%;
    background: conic-gradient(var(--primary) 0deg, var(--secondary) 120deg, transparent 120deg);
    width: 100%;
    transition: width 1s linear;
    border-radius: 50%;
    mask: radial-gradient(farthest-side, transparent calc(100% - 6px), black calc(100% - 6px));
    animation: fill 3s ease-in-out infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes fill {
    0% {
        background: conic-gradient(var(--primary) 0deg, transparent 0deg);
    }
    100% {
        background: conic-gradient(var(--primary) 0deg, var(--secondary) 270deg, transparent 270deg);
    }
}
.maintenance-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--body-color);
    margin-bottom: 1rem;
}
.maintenance-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.improvement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.improvement-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}
.improvement-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}
.improvement-content h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--body-color);
}
.improvement-content p {
    color: var(--gray);
    margin: 0;
    font-size: 0.9rem;
}
.maintenance-timeline {
    position: relative;
    padding: 1rem 0;
}
.maintenance-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}
.timeline-item {
    position: relative;
    padding: 1rem 0 1rem 4rem;
    margin-bottom: 1rem;
}
.timeline-marker {
    position: absolute;
    left: 15px;
    top: 1.5rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: white;
    background: var(--gray);
    border: 3px solid var(--card-bg);
}
.timeline-item.completed .timeline-marker {
    background: var(--success);
}
.timeline-item.active .timeline-marker {
    background: var(--primary);
}
.timeline-content h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--body-color);
}
.timeline-content p {
    color: var(--gray);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.timeline-time {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
}

/* Dark Mode Support */

[data-theme="dark"] .improvement-item {
    background: rgba(255, 255, 255, 0.02);
    border-color: var(--dark-border);
}
[data-theme="dark"] .improvement-item:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
[data-theme="dark"] .improvement-content h5,
[data-theme="dark"] .timeline-content h5,
[data-theme="dark"] .maintenance-title {
    color: var(--dark-text);
}
[data-theme="dark"] .improvement-content p,
[data-theme="dark"] .timeline-content p,
[data-theme="dark"] .maintenance-description {
    color: var(--dark-text-muted);
}
[data-theme="dark"] .maintenance-timeline::before {
    background: var(--dark-border);
}
[data-theme="dark"] .timeline-marker {
    border-color: var(--dark-card);
}

/* Responsive Design */
@media (max-width: 768px) {
    
    
    .maintenance-title {
        font-size: 2rem;
    }
    
    .gear-container {
        width: 80px;
        height: 80px;
    }
    
    .gear-1, .gear-2 {
        font-size: 2rem;
    }
    
    .gear-2 {
        font-size: 1.5rem;
    }
    
    .progress-ring {
        width: 100px;
        height: 100px;
    }
    
    .improvement-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .timeline-item {
        padding-left: 3rem;
    }
    
    .maintenance-timeline::before {
        left: 15px;
    }
    
    .timeline-marker {
        left: 0;
        width: 25px;
        height: 25px;
    }
}

/* ===== Dispatch dashboard page (merged from dashboard.css) ===== */
.tips-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
    margin-bottom: 30px;
    background-color: var(--card-bg);
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}
.tips-card .card-header {
    background: linear-gradient(135deg, var(--info) 0%, var(--primary) 100%);
    color: white;
    padding: 15px 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.tips-card .card-body {
    padding: 25px;
}
.tips-card ul {
    padding-left: 20px;
}
.tips-card li {
    margin-bottom: 10px;
    color: var(--body-color);
}
.tips-card p {
    margin-bottom: 15px;
    color: var(--body-color);
}
.step-container {
    padding: 20px 0;
}
.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 15px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px var(--shadow-color);
}
.step-item:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 25px var(--shadow-color);
    transform: translateY(-3px);
}
.step-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin: 0 auto 1rem;
    min-width: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    margin-right: 15px;
}
.step-content {
    flex: 1;
}
.step-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--body-color);
    margin: 0 0 5px 0;
}
.step-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}
.protection-note {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(79, 70, 229, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
}
.protection-note .note-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 1.2rem;
}
.protection-note .note-content h5 {
    margin: 0 0 5px 0;
    color: var(--primary);
    font-weight: 600;
}
.protection-note .note-content p {
    margin: 0;
    color: var(--gray);
    font-size: 0.95rem;
}
.protection-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.protection-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Premium Bombing Dashboard Styles */

.premium-bombing-dashboard {
    background: linear-gradient(145deg, #49468f 0%, #18172f 100%, #4F46E5 0%);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    width: 100%;
    max-width: none;
    margin-bottom: 30px;
    margin-left: 0;
    margin-right: 0;
}
.premium-bombing-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(64, 224, 208, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 105, 180, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}
.status-badge {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #001a0d;
    transition: all 0.3s ease;
    gap: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
    position: relative;
}
.status-badge.error {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
}
.status-badge.paused {
    background: linear-gradient(135deg, #feca57 0%, #ff9ff3 100%);
    color: #1a1a1a;
    box-shadow: 0 4px 20px rgba(254, 202, 87, 0.3);
}
.status-badge.limit-reached {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    animation: limitReachedPulse 2s infinite;
}

@keyframes limitReachedPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 6px 30px rgba(102, 126, 234, 0.6);
    }
}
.status-pulse {
    width: 8px;
    height: 8px;
    background: #001a0d;
    border-radius: 50%;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
}
.dashboard-title {
    text-align: right;
}
.dashboard-title h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.target-number {
    color: #8892b0;
    font-size: 0.9rem;
    margin: 4px 0 0 0;
    font-weight: 500;
}
.target-number span {
    color: #64ffda;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}
.status-display {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
}
.status-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 2rem;
    flex-shrink: 0;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
}
.status-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}
.status-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2, #667eea);
    border-radius: 22px;
    z-index: -1;
    animation: iconGlow 3s linear infinite;
}

@keyframes iconGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.status-info h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 4px 0;
}
.status-subtitle {
    color: #8892b0;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 400;
}
.premium-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}
.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}
.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.3);
}
.countdown-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    box-shadow: 0 6px 20px rgba(250, 112, 154, 0.3);
}
.stat-icon i {
    color: #ffffff;
    font-size: 1.2rem;
}
.stat-content {
    flex: 1;
}
.stat-label {
    display: block;
    font-size: 0.8rem;
    color: #8892b0;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 4px;
}
.stat-value {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}
.countdown-value {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.countdown-value small {
    font-size: 1rem;
    opacity: 0.8;
}
.premium-controls {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}
.premium-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    min-width: 200px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    position: relative;
    overflow: hidden;
    flex: 1;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    backdrop-filter: blur(10px);
}
.premium-btn::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;
}
.premium-btn:hover::before {
    left: 100%;
}
.premium-btn.disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    border-color: rgba(108, 117, 125, 0.3);
    box-shadow: 0 4px 16px rgba(108, 117, 125, 0.2);
}
.premium-btn.disabled:hover {
    transform: none;
    box-shadow: 0 4px 16px rgba(108, 117, 125, 0.2);
}
.premium-btn.disabled::before {
    display: none;
}
.pause-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: 1px solid rgba(102, 126, 234, 0.3);
    box-shadow: 
        0 8px 32px rgba(102, 126, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.pause-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(102, 126, 234, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.stop-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 107, 107, 0.3);
    box-shadow: 
        0 8px 32px rgba(255, 107, 107, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.stop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(255, 107, 107, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #ffffff;
}
.premium-controls .btn-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.premium-controls .btn-icon i {
    font-size: 0.9rem;
}

/* Dark mode styles for premium interface */
[data-theme="dark"] .premium-bombing-dashboard {
    background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 50%, #111111 100%);
    border-color: rgba(255, 255, 255, 0.15);
}
[data-theme="dark"] .status-badge {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    border-color: rgba(99, 102, 241, 0.3);
    color: #001a0d;
}
[data-theme="dark"] .dashboard-title h2 {
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
[data-theme="dark"] .status-display {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}
[data-theme="dark"] .stat-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}
[data-theme="dark"] .stat-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .premium-bombing-dashboard {
        padding: 20px;
        border-radius: 20px;
    }
    
    .dashboard-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        margin-bottom: 24px;
        flex-wrap: wrap;
    }
.status-badge {
    padding: 6px 12px;
    font-size: 11px;
    order: 1;
    flex-shrink: 0;
}

    
    .dashboard-title {
        order: 2;
        text-align: right;
        flex: 1;
        min-width: 0;
    }
    
    .dashboard-title h2 {
        font-size: 1.6rem;
        margin-bottom: 4px;
    }
    
    .target-number {
        font-size: 1rem;
        margin: 0;
    }
    
    .status-display {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 20px;
        margin-bottom: 20px;
    }
.status-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    align-self: center;
}

    
    .status-icon i {
        font-size: 1.8rem;
    }
    
    .status-info h3 {
        font-size: 1.4rem;
    }
    
    .status-subtitle {
        font-size: 1rem;
    }
    
    /* Keep stats in one line on mobile */
    .premium-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .stat-card {
        padding: 16px 12px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto;
    }
    
    .stat-icon i {
        font-size: 1rem;
    }
    
    .stat-content {
        text-align: center;
    }
    
    .stat-label {
        font-size: 0.85rem;
        margin-bottom: 3px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .countdown-value small {
        font-size: 1rem;
    }
    
    .premium-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 20px;
    }

    .premium-btn {
        width: 100%;
        box-sizing: border-box;
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .premium-controls .btn-icon {
        width: 20px;
        height: 20px;
    }

    .premium-controls .btn-icon i {
        font-size: 0.8rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .premium-bombing-dashboard {
        padding: 16px;
        margin: 0 10px;
    }
    
    .dashboard-header {
        margin-bottom: 20px;
        gap: 8px;
    }
    
    .status-badge {
        font-size: 10px;
        padding: 5px 10px;
    }
    
    .dashboard-title h2 {
        font-size: 1.4rem;
    }
    
    .target-number {
        font-size: 0.9rem;
    }
    
    .status-display {
        padding: 18px;
        margin-bottom: 16px;
    }
    
    .status-icon {
        width: 52px;
        height: 52px;
    }
    
    .status-icon i {
        font-size: 1.5rem;
    }
    
    .status-info h3 {
        font-size: 1.2rem;
    }
    
    .premium-stats-grid {
        gap: 10px;
        margin-bottom: 16px;
    }
    
    .stat-card {
        padding: 12px 8px;
    }
    
    .stat-icon {
        width: 36px;
        height: 36px;
    }
    
    .stat-icon i {
        font-size: 0.9rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .stat-value {
        font-size: 1.35rem;
    }
    
    .premium-controls {
        margin-bottom: 16px;
        gap: 10px;
    }
    
    .premium-btn {
        padding: 14px 18px;
        font-size: 0.9rem;
    }
    

}
#countdownTimer {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}
[data-theme="dark"] #countdownTimer {
    color: #3B82F6;
}

/* Premium Notification Styles */

.limit-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    min-width: 320px;
    max-width: 400px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.limit-notification.show {
    transform: translateX(0);
    opacity: 1;
}
.notification-content {
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.notification-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}
.notification-icon i {
    color: #ffffff;
    font-size: 1.4rem;
}
.notification-text h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.notification-text p {
    color: #8892b0;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Dark mode notification styles */
[data-theme="dark"] .limit-notification {
    background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 100%);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Mobile responsive notification */
@media (max-width: 768px) {
    .limit-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .limit-notification.show {
        transform: translateY(0);
    }
    
    .notification-content {
        padding: 16px;
        gap: 12px;
    }
    
    .notification-icon {
        width: 40px;
        height: 40px;
    }
    
    .notification-icon i {
        font-size: 1.2rem;
    }
    
    .notification-text h4 {
        font-size: 1rem;
    }
    
    .notification-text p {
        font-size: 0.85rem;
    }
}

/* Ensure consistent container alignment */
.alert {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;
}
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    background-color: var(--card-bg);
    color: var(--body-color);
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

/* Fix for Bootstrap container alignment */
.col-12.col-lg-10.mx-auto > * {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* Page-scoped overrides — moved out of inline page-level style blocks */

@media (max-width: 767.98px) {
    .page-contact .form-check {
        text-align: left;
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .page-contact .form-check-input {
        margin-top: 0.25rem !important;
    }

    #confirmationStep .card-header h5 {
        font-size: 1.1rem;
    }

    #confirmationStep .card-body,
    #tmail .card-body {
        padding: 1.5rem !important;
    }

    .fs-md-2 {
        font-size: 1.5rem !important;
    }

    #tmail h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .page-protect-result .btn-lg {
        padding: 0.75rem 1.25rem;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .page-protect-result .card {
        margin: 1rem;
    }

    .page-protect-result .card-body {
        padding: 1.5rem !important;
    }
}
.page-protect-result .telegram-card {
    margin: 1.5rem 1rem;
    padding: 1rem;
    border-radius: 1rem;
    background: linear-gradient(45deg, #2aabee, #229ED9);
    color: white;
}
/* ── Dispatch verification overlay (trust-gate human check) ───────────────── */
.premium-bombing-dashboard { position: relative; }
.verify-overlay {
    position: absolute; inset: 0; z-index: 30;
    display: none; align-items: center; justify-content: center; padding: 24px;
    background: rgba(17, 15, 38, 0.78);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    border-radius: inherit;
}
.verify-overlay.show { display: flex; animation: verifyIn .25s ease both; }
@keyframes verifyIn { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .verify-overlay.show { animation: none; } }
.verify-panel { text-align: center; max-width: 360px; width: 100%; }
.verify-shield {
    width: 58px; height: 58px; border-radius: 16px; margin: 0 auto 18px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(124, 131, 255, 0.16); color: #b3b7ff; font-size: 22px;
}
.verify-panel h3 {
    color: #fff; font-size: 22px; font-weight: 800; margin: 0 0 8px;
    letter-spacing: -0.02em; font-family: 'Outfit', system-ui, sans-serif;
}
.verify-panel p { color: rgba(255,255,255,0.62); font-size: 14px; line-height: 1.55; margin: 0 0 22px; }
#turnstileBox { display: flex; justify-content: center; min-height: 65px; }
.verify-status { margin-top: 14px; font-size: 12.5px; color: rgba(255,255,255,0.5); min-height: 16px; }

/* ============================================================
   INSTAGRAM BOOSTER — merged from instagram-booster/style.css.
   Scoped under body.page-ig so page-specific rules (esp.
   .stat-card, which the dashboard also defines) don't leak.
   Reuses the home gradient (var(--success) -> var(--info)).
   ============================================================ */

/* likes / followers segmented tabs */
.page-ig .service-tabs {
    position: relative;
    display: flex;
    gap: 4px;
    padding: 5px;
    border-radius: 16px;
    background: var(--light-gray);
    margin-bottom: 1.5rem;
}
[data-theme="dark"] .page-ig .service-tabs { background: var(--input-bg); }

.page-ig .service-tabs .nav-item { flex: 1 1 0; position: relative; z-index: 2; }
.page-ig .service-tabs .nav-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 0.5rem;
    border: none;
    background: transparent;
    border-radius: 12px;
    color: var(--gray);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.25s ease;
}
.page-ig .service-tabs .nav-link:focus,
.page-ig .service-tabs .nav-link:focus-visible,
.page-ig .service-tabs .nav-link:active { outline: none; box-shadow: none; }
/* kill the navbar's inherited hover underline (.nav-link::after) */
.page-ig .service-tabs .nav-link::after { content: none; display: none; }
.page-ig .service-tabs .nav-link:hover { color: var(--body-color); }
.page-ig .service-tabs .nav-link.active,
.page-ig .service-tabs .nav-link.active:hover { color: #fff; }
.page-ig .service-tabs .nav-link i { transition: transform 0.25s ease; }
.page-ig .service-tabs .nav-link.active i { transform: scale(1.1); }

/* sliding pill behind the active tab — home gradient */
.page-ig .tab-indicator {
    position: absolute;
    top: 5px;
    left: 5px;
    height: calc(100% - 10px);
    width: calc(50% - 5px);
    border-radius: 12px;
    background: linear-gradient(135deg, var(--success) 0%, var(--info) 100%);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    pointer-events: none;
}
body.page-ig[data-post-submitted="true"] .tab-indicator { display: none; }
/* indicator hidden after submit — paint the active tab directly */
body.page-ig[data-post-submitted="true"] .service-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--success) 0%, var(--info) 100%);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

.page-ig .tab-pane.fade { opacity: 0; transition: opacity 0.3s ease; }
.page-ig .tab-pane.fade.show { opacity: 1; }
@keyframes ig-fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.page-ig .tab-pane.active { animation: ig-fade-in 0.35s ease forwards; }

@media (max-width: 400px) {
    .page-ig .service-tabs .nav-link { font-size: 0.88rem; padding: 0.75rem 0.4rem; }
}

/* stat cards (social proof) — home gradient */
.page-ig .stat-card {
    background: linear-gradient(135deg, var(--success) 0%, var(--info) 100%);
    color: #fff;
    padding: 1.75rem 1rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.25);
}
.page-ig .stat-card h2 { font-size: 2.4rem; font-weight: 800; margin-bottom: 0.35rem; }
.page-ig .stat-card p { font-size: 1rem; opacity: 0.92; margin: 0; }

/* injected verification button: match site btn-primary */
.page-ig .instagram-gradient-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.page-ig .instagram-gradient-btn:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 8px 22px rgba(79, 70, 229, 0.4);
}
.page-ig .pulse-button { position: relative; }

/* maintenance card */
.page-ig .maintenance-card { border: none; }

/* injected verification post/profile cards */
.page-ig .post-container {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    max-width: 520px;
    margin: 0 auto 1.5rem;
}
.page-ig .post-header {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
}
.page-ig .post-avatar { width: 34px; height: 34px; border-radius: 50%; margin-right: 12px; object-fit: cover; }
.page-ig .post-username { font-weight: 700; font-size: 14px; color: var(--body-color); }
.page-ig .post-image { width: 100%; max-height: 560px; object-fit: cover; display: block; }
.page-ig .post-likes { padding: 12px 16px; font-weight: 700; font-size: 14px; color: var(--body-color); }
.page-ig .post-description { padding: 0 16px 12px; font-size: 14px; color: var(--body-color); }
.page-ig .post-timestamp { padding: 8px 16px 16px; font-size: 12px; color: var(--gray); border-bottom: 1px solid var(--border-color); }

.page-ig .profile-container {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    max-width: 500px;
    margin: 0 auto 1.5rem;
    padding: 24px;
}
.page-ig .profile-header { display: flex; align-items: center; gap: 20px; margin-bottom: 16px; }
.page-ig .profile-pic { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; }
.page-ig .profile-info { flex: 1; }
.page-ig .profile-username { font-size: 20px; font-weight: 700; margin-bottom: 4px; color: var(--body-color); }
.page-ig .profile-fullname { color: var(--body-color); font-weight: 600; }
.page-ig .profile-bio { color: var(--gray); font-size: 0.9rem; margin-top: 4px; }
.page-ig .profile-stats {
    display: flex;
    justify-content: space-around;
    padding: 14px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}
.page-ig .profile-stat { font-size: 0.9rem; color: var(--body-color); }

@media (max-width: 576px) {
    .page-ig .profile-container { padding: 16px; }
    .page-ig .profile-header { gap: 14px; }
    .page-ig .profile-pic { width: 64px; height: 64px; }
    .page-ig .profile-username { font-size: 18px; }
}
