:root {
    --bg-color: #141417;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #a0a0ab;
    --accent-red: #ff0000;
    --accent-dark: #8b0000;
    --glow-color: rgba(255, 0, 0, 0.4);
    --font-main: 'Onest', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Background Glows */
.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: var(--glow-color);
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}

.bg-glow-1 {
    top: -200px;
    left: -200px;
}

.bg-glow-2 {
    bottom: -200px;
    right: -200px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1100px;
    padding: 12px 30px;
    background: rgba(24, 24, 27, 0.45); /* Even more transparent pill background */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 40px;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.navbar.scrolled {
    background: rgba(24, 24, 27, 0.85);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
}

.nav-logo-img {
    height: 44px;
    width: auto;
}

.logo-b {
    color: var(--text-main);
}

.logo-accent {
    color: var(--text-main); /* In screenshot logo text is white */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-main);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-socials {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
}

.nav-user span {
    color: var(--text-main);
}

.nav-user svg {
    width: 20px;
    height: 20px;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.nav-user:hover svg {
    color: var(--accent-red);
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-main);
    font-size: 0.95rem;
}

.btn-login {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--card-border);
}

.btn-login:hover {
    background: var(--card-bg);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 15px var(--glow-color);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px var(--glow-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--text-main);
    border: 1px solid var(--card-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* Typography Utility */
.text-gradient {
    background: linear-gradient(135deg, #ff4d4d 0%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

main {
    padding-top: 100px;
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

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

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px var(--glow-color);
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

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

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

/* Features */
.features {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

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

/* Showcase */
.showcase {
    max-width: 1200px;
    margin: 80px auto 120px auto;
    padding: 0 20px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.showcase-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.showcase-card:hover {
    transform: scale(1.02);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.1);
}

.showcase-img {
    height: 250px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.showcase-card:hover .showcase-img img {
    opacity: 1;
}

.showcase-info {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.showcase-info h3 {
    font-size: 1.2rem;
}

.showcase-info .price {
    font-weight: 700;
    color: var(--accent-red);
    font-size: 1.1rem;
}

/* Footer */
.footer-new {
    border-top: 1px solid var(--card-border);
    background: #141417;
    padding: 60px 40px 30px;
    font-size: 0.85rem;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand {
    flex: 1;
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo .logo-accent {
    color: var(--text-main);
}

.footer-logo-img {
    height: 48px;
    width: auto;
}

.footer-desc {
    color: var(--text-main);
    line-height: 1.6;
    font-size: 0.85rem;
}

.footer-grid {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: var(--text-main);
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--accent-red);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid var(--card-border);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.footer-copyright {
    color: var(--text-main);
    font-size: 0.75rem;
}

.footer-copyright p {
    margin-bottom: 8px;
}

.footer-designer {
    color: var(--text-main);
}

.footer-dot {
    margin: 0 6px;
    opacity: 0.5;
}

.footer-disclaimer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-icon {
    color: var(--text-main);
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    fill: transparent;
}

/* Hover States for Social Icons */

/* Discord */
.social-icon.discord-icon:hover {
    color: #5865F2;
    filter: drop-shadow(0 0 8px rgba(88, 101, 242, 0.5));
}
.social-icon.discord-icon:hover svg {
    fill: rgba(88, 101, 242, 0.3);
}

/* Telegram */
.social-icon.telegram-icon:hover {
    color: #2AABEE;
    filter: drop-shadow(0 0 8px rgba(42, 171, 238, 0.5));
}
.social-icon.telegram-icon:hover svg {
    fill: rgba(42, 171, 238, 0.3);
}

/* YouTube */
.social-icon.youtube-icon:hover {
    color: #FF0000;
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.5));
}
.social-icon.youtube-icon:hover svg {
    fill: rgba(255, 0, 0, 0.3);
}
.social-icon.youtube-icon:hover svg polygon {
    fill: #ffffff;
    stroke: #ffffff;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-header {
    text-align: left;
    margin-bottom: 40px;
}

.pricing-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.pricing-header h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-red) !important;
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.25) !important;
}

.plan-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
}

.plan-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 15px;
}

.plan-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.plan-title-area h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

.plan-price-area {
    text-align: right;
}

.plan-per-day {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.plan-price {
    font-size: 1.8rem;
    font-weight: 700;
}

.dashed-hr {
    border: 0;
    border-top: 2px dashed var(--card-border);
    margin: 20px 0;
}

.plan-features {
    list-style: none;
    margin-bottom: 24px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.plan-features li svg {
    color: var(--text-muted);
}

.btn-plan, .btn-support {
    display: block;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    padding: 14px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-plan:hover, .btn-support:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
    transform: translateY(-2px);
}

.btn-plan.outline-red {
    background: transparent;
    border: 1px solid var(--accent-red);
    color: var(--text-main);
}

.btn-plan.outline-red:hover {
    background: rgba(255, 0, 0, 0.1);
}

.hover-icon-btn {
    width: auto;
    padding: 14px 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.hover-icon-btn .btn-icon {
    width: 0;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    margin-left: 0;
}

.hover-icon-btn:hover .btn-icon {
    width: 18px;
    opacity: 1;
    transform: translateX(0);
    margin-left: 8px;
}

/* HWID Card */
.hwid-card {
    display: flex;
    gap: 40px;
    padding: 30px;
}

.hwid-left {
    flex: 1;
}

.hwid-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.plan-img-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    min-height: 200px;
}

/* Additions Grid */
.additions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

/* Visuals Section */
.visuals-header {
    text-align: center;
    margin: 60px 0 40px;
}

.visuals-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.visuals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.visual-card {
    background: #141417;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.visual-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.visual-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px;
}

.visual-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
}

.visual-price {
    font-size: 1.2rem;
    color: var(--accent-red);
}

@media (max-width: 768px) {
    .visuals-grid {
        grid-template-columns: 1fr;
    }
    
    .visual-img {
        height: 250px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.faq-header {
    margin-bottom: 40px;
}

.faq-badge {
    background: rgba(255, 0, 0, 0.15);
    color: var(--accent-red);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.faq-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    margin-bottom: 40px;
}

.faq-item {
    background: #141417;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active, .faq-item:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.faq-q-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-q-left svg {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.faq-item.active .faq-question, .faq-item:hover .faq-question,
.faq-item.active .faq-q-left svg, .faq-item:hover .faq-q-left svg,
.faq-item.active .faq-chevron, .faq-item:hover .faq-chevron {
    color: #fff;
}

.faq-chevron {
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-chevron, .faq-item:hover .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-item:hover .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer p {
    padding: 0 25px 25px 55px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-answer p, .faq-item:hover .faq-answer p {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        justify-content: center;
        margin-bottom: 50px;
    }
    
    .nav-links {
        display: none;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

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

::-webkit-scrollbar-track {
    background: #0f0f11;
    border-left: 1px solid rgba(255,255,255,0.02);
}

::-webkit-scrollbar-thumb {
    background: #2a2a2e;
    border: 2px solid #0f0f11;
    border-radius: 8px;
}

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

::-webkit-scrollbar-thumb:active {
    background: #ff4d4d;
}

/* =========================================
   CUSTOM RED DASHBOARD REDESIGN
   ========================================= */
.red-dashboard-wrapper {
    display: flex;
    min-height: 100vh;
    background: transparent;
    color: #fff;
    font-family: 'Onest', sans-serif;
}

.red-sidebar {
    width: 280px;
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.red-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
    text-decoration: none;
    color: #fff;
}
.red-sidebar-logo img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.3));
}
.red-sidebar-logo span {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.red-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.red-nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 12px;
    color: #888;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.red-nav-item svg {
    stroke: currentColor;
}
.red-nav-item:hover {
    color: #fff;
    background: rgba(255, 0, 0, 0.03);
    border-color: rgba(255, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.05);
}
.red-nav-item.active {
    color: #fff;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.1) 0%, transparent 100%);
    border-left: 3px solid var(--accent-red);
}
.red-nav-item.active svg {
    stroke: var(--accent-red);
    filter: drop-shadow(0 0 5px var(--accent-red));
}

.red-main-content {
    flex: 1;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.red-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
}
.red-header-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}
.red-header-title p {
    color: #888;
    margin: 0;
}
.red-profile-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    color: #fff;
    backdrop-filter: blur(10px);
}
.red-profile-badge svg {
    stroke: var(--accent-red);
}

.red-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.red-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.red-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.red-card:hover::before {
    opacity: 1;
}
.red-card:hover {
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.05);
    border-color: rgba(255, 0, 0, 0.1);
}

.red-card h3 {
    font-size: 1.2rem;
    color: #aaa;
    margin: 0 0 20px 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.red-input-group {
    margin-bottom: 20px;
}
.red-input-group label {
    display: block;
    color: #777;
    margin-bottom: 8px;
    font-size: 0.9rem;
}
.red-input {
    width: 100%;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    color: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.3s;
}
.red-input:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 10px rgba(255,0,0,0.1);
}

.red-btn {
    background: transparent;
    color: #fff;
    border: 1px solid var(--accent-red);
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.red-btn:hover {
    background: var(--accent-red);
    box-shadow: 0 0 15px rgba(255,0,0,0.3);
}

.red-status-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 10px 0;
}
.red-status-active {
    color: var(--accent-red);
    text-shadow: 0 0 10px rgba(255,0,0,0.3);
}

.red-store-card {
    text-align: center;
    padding: 40px 30px;
}
.red-store-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-red);
    margin: 20px 0;
    text-shadow: 0 0 20px rgba(255,0,0,0.2);
}
.red-store-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}
.red-store-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 10px;
}
.red-store-features li svg {
    stroke: var(--accent-red);
}
.red-store-btn {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 15px;
}

.red-client-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
}
.red-client-box h2 {
    font-size: 3rem;
    margin: 0 0 20px 0;
}
.red-client-box .version {
    background: rgba(255,0,0,0.1);
    color: var(--accent-red);
    padding: 5px 15px;
    border-radius: 100px;
    font-weight: bold;
    margin-bottom: 40px;
    border: 1px solid rgba(255,0,0,0.2);
}
.red-client-btn {
    font-size: 1.2rem;
    padding: 20px 40px;
    background: transparent;
    color: #fff;
    border: 1px solid var(--accent-red);
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}
.red-client-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,0,0,0.4);
}

/* New Store Redesign Classes */
.bv-category-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    
    
    display: inline-block;
}

.bv-store-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.bv-store-card:hover {
    background: rgba(255, 0, 0, 0.05);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.1);
    transform: translateY(-5px);
}

.bv-price-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.bv-old-price {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    font-size: 1.1rem;
    font-weight: 500;
}

.bv-new-price-badge {
    background: rgba(255, 0, 0, 0.15);
    color: var(--accent-red);
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    border: 1px solid rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.bv-store-card:hover .bv-new-price-badge {
    background: var(--accent-red);
    color: #fff;
}

.bv-card-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 5px 0;
}

.bv-card-subtitle {
    color: var(--accent-red);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.bv-card-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 250px;
}

.bv-store-btn {
    width: 100%;
    margin-top: auto;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
}

.bv-store-btn:hover:not([disabled]) {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

/* Avatar Modal Styles */
.avatar-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
}
.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}
.avatar-edit-btn {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #222;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}
.avatar-edit-btn:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
}
.avatar-modal-body {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.avatar-preview-lg {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}
.avatar-dropzone {
    width: 180px;
    height: 180px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    padding: 15px;
}
.avatar-dropzone:hover {
    border-color: var(--accent-red);
    background: rgba(255, 0, 0, 0.05);
}
/* =========================================
   BENTO BOX REDESIGN (INDEX.HTML V2)
   ========================================= */

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-bento {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 120px 20px 60px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-bento-content {
    text-align: center;
    max-width: 800px;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 30px;
    color: var(--accent-red);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero-bento-title {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-bento-subtitle {
    font-size: 1.2rem;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-bento-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-glow-main {
    background: var(--accent-red);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-glow-main:hover {
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.5);
    transform: translateY(-3px);
}

.btn-glass-main {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}
.btn-glass-main:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.hero-bento-image {
    position: relative;
    max-width: 1000px;
    width: 100%;
    margin-top: 20px;
    border-radius: 20px;
    /* Create a fade-out effect at the bottom */
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
.hero-bento-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Bento Features */
.features-bento {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-header-bento {
    text-align: center;
    margin-bottom: 60px;
}
.section-header-bento h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}
.section-header-bento p {
    color: #888;
    font-size: 1.1rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 24px;
}

.bento-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}
.bento-item:hover {
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.bento-small {
    grid-column: span 1;
    grid-row: span 1;
}

.feature-icon-bento {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.3));
}
.bento-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.bento-item p {
    color: #a0a0a0;
    line-height: 1.6;
}

/* Pricing Bento */
.pricing-bento {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.pricing-grid-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.pricing-card-bento {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    height: 100%;
}
.pricing-card-bento:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 0, 0.2);
}

.bento-featured {
    background: linear-gradient(180deg, rgba(255, 0, 0, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 0, 0, 0.3);
    transform: scale(1.05);
    position: relative;
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.1);
}
.bento-featured:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 30px 60px rgba(255, 0, 0, 0.2);
}

.bento-featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-red);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.plan-top-bento {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}
.plan-top-bento h3 {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 10px;
}
.plan-price-bento {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    display: block;
    margin-bottom: 10px;
}
.plan-desc-bento {
    color: var(--accent-red);
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-features-bento {
    list-style: none;
    flex: 1;
    margin-bottom: 30px;
}
.plan-features-bento li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 0.95rem;
}
.plan-features-bento li svg {
    color: var(--accent-red);
    flex-shrink: 0;
}

.btn-bento-buy {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-bento-buy:hover {
    background: rgba(255, 255, 255, 0.1);
}
.featured-btn {
    background: var(--accent-red);
    border: none;
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
}
.featured-btn:hover {
    background: #ff1a1a;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

/* FAQ Bento */
.faq-bento {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.faq-list-bento {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-list-bento .faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 0;
}

/* Responsive Overrides for Bento */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .bento-large, .bento-small {
        grid-column: span 1;
        grid-row: span 1;
    }
    .pricing-grid-bento {
        grid-template-columns: 1fr;
    }
    .bento-featured {
        transform: scale(1);
    }
    .bento-featured:hover {
        transform: scale(1) translateY(-5px);
    }
    .hero-bento-buttons {
        flex-direction: column;
    }
}


/* Bento Uniqueness Overrides */
.bento-noise {
    position: relative;
    background: linear-gradient(145deg, rgba(30, 0, 0, 0.4) 0%, rgba(15, 15, 15, 0.9) 100%);
    border: 1px solid rgba(255, 0, 0, 0.15);
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5);
}

.bento-noise::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    z-index: 0;
}

.bento-content {
    position: relative;
    z-index: 1;
}

.bento-watermark {
    position: absolute;
    right: -20px;
    bottom: -40px;
    font-size: 15rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.bento-item:hover {
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.15);
}

/* Toast Notifications */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 0.95rem;
}

.toast.show {
    transform: translateX(0);
}

.toast-error {
    border-left: 4px solid #ff4d4d;
}
.toast-error svg {
    color: #ff4d4d;
    flex-shrink: 0;
}

.toast-success {
    border-left: 4px solid #4caf50;
}
.toast-success svg {
    color: #4caf50;
    flex-shrink: 0;
}