@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --pub-bg: #0a0a0f;
    --pub-bg-card: #1c1c24;
    --pub-bg-elevated: #2a2a38;
    --pub-bg-secondary: #111118;
    --pub-bg-tertiary: #18181f;
    --pub-bg-glass: rgba(10, 10, 15, 0.85);
    --pub-accent: #4a9eff;
    --pub-accent-hover: #6bb3ff;
    --pub-accent-muted: rgba(74, 158, 255, 0.15);
    --pub-accent-glow: rgba(74, 158, 255, 0.4);
    --pub-secondary: #6c5ce7;
    --pub-secondary-hover: #7f71ea;
    --pub-secondary-muted: rgba(108, 92, 231, 0.15);
    --pub-success: #10b981;
    --pub-warning: #f59e0b;
    --pub-danger: #ef4444;
    --pub-discord: #5865F2;
    --pub-discord-hover: #4752C4;
    --pub-support: #e74c3c;
    --pub-support-hover: #c0392b;
    --pub-text: #ffffff;
    --pub-text-secondary: #a8a8b3;
    --pub-text-muted: #6b6b7a;
    --pub-border: rgba(255, 255, 255, 0.08);
    --pub-border-strong: rgba(255, 255, 255, 0.14);
    --pub-radius: 8px;
    --pub-radius-lg: 12px;
    --pub-radius-xl: 16px;
    --pub-radius-full: 9999px;
    --pub-transition: 0.3s ease;
    --pub-transition-fast: 0.15s ease;
    --pub-font: 'Inter', system-ui, -apple-system, sans-serif;
    --pub-navbar-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body.public-page {
    font-family: var(--pub-font);
    background: var(--pub-bg);
    color: var(--pub-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--pub-bg-elevated);
    border-radius: var(--pub-radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--pub-accent);
}

::selection {
    background: var(--pub-accent);
    color: white;
}

.public-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--pub-navbar-height);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    z-index: 1000;
    overflow: visible;
    transition: background var(--pub-transition), box-shadow var(--pub-transition), backdrop-filter var(--pub-transition);
}

.public-navbar.scrolled {
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--pub-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    overflow: visible;
}

.navbar-brand img,
.navbar-logo {
    height: 140px;
    width: 140px;
    object-fit: cover;
    object-position: center 10%;
    transition: all 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

.navbar-brand-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--pub-text);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.navbar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    color: var(--pub-text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border-radius: var(--pub-radius);
    transition: all var(--pub-transition-fast);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--pub-text);
    background: var(--pub-accent-muted);
}

.navbar-nav .nav-link.active {
    color: var(--pub-accent);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--pub-accent);
    border-radius: 2px;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 200px;
    background: var(--pub-bg-elevated);
    border: 1px solid var(--pub-border-strong);
    border-radius: var(--pub-radius-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--pub-transition);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
    z-index: 1001;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--pub-border-strong);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--pub-text-secondary);
    text-decoration: none;
    font-size: 14px;
    border-radius: var(--pub-radius);
    transition: all var(--pub-transition-fast);
}

.nav-dropdown-menu a:hover {
    background: var(--pub-accent-muted);
    color: var(--pub-text);
}

.nav-dropdown-menu a i {
    width: 18px;
    text-align: center;
    color: var(--pub-accent);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-support {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    padding: 8px 20px;
    border-radius: var(--pub-radius-full);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(231, 76, 60, 0.3);
    cursor: pointer;
    transition: all var(--pub-transition);
}

.btn-support:hover {
    background: rgba(231, 76, 60, 0.25);
    transform: translateY(-1px);
    border-color: rgba(231, 76, 60, 0.5);
}

.btn-login-discord {
    background: rgba(88, 101, 242, 0.15);
    color: #7289da;
    padding: 8px 18px;
    border-radius: var(--pub-radius-full);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(88, 101, 242, 0.3);
    transition: all var(--pub-transition);
}

.btn-login-discord:hover {
    background: rgba(88, 101, 242, 0.25);
    transform: translateY(-1px);
    border-color: rgba(88, 101, 242, 0.5);
}

.pub-user-menu-wrapper {
    position: relative;
}

.pub-user-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--pub-bg-elevated, #1a1a28);
    border: 1px solid var(--pub-border);
    border-radius: var(--pub-radius-full);
    padding: 4px 12px 4px 4px;
    cursor: pointer;
    transition: all var(--pub-transition);
    color: var(--pub-text);
}

.pub-user-menu-btn:hover {
    border-color: var(--pub-accent);
    box-shadow: 0 0 12px var(--pub-accent-muted);
}

.pub-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.pub-avatar-placeholder {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pub-accent), var(--pub-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: white;
}

.pub-user-arrow {
    font-size: 10px;
    color: var(--pub-text-muted);
    transition: transform var(--pub-transition);
}

.pub-user-dropdown.show + .pub-user-menu-btn .pub-user-arrow,
.pub-user-menu-btn:has(+ .pub-user-dropdown.show) .pub-user-arrow {
    transform: rotate(180deg);
}

.pub-user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    background: var(--pub-bg-elevated, #1a1a28);
    border: 1px solid var(--pub-border-strong);
    border-radius: var(--pub-radius-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--pub-transition);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
    z-index: 1001;
}

.pub-user-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pub-user-dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
}

.pub-user-avatar-lg {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--pub-accent);
}

.pub-avatar-placeholder-lg {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pub-accent), var(--pub-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: white;
    border: 2px solid var(--pub-accent);
}

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

.pub-user-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--pub-text);
}

.pub-user-dropdown-divider {
    height: 1px;
    background: var(--pub-border);
    margin: 4px 0;
}

.pub-user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: var(--pub-text-secondary);
    text-decoration: none;
    font-size: 14px;
    border-radius: var(--pub-radius);
    transition: all var(--pub-transition-fast);
}

.pub-user-dropdown-item:hover {
    background: var(--pub-accent-muted);
    color: var(--pub-text);
}

.pub-user-dropdown-item i {
    width: 18px;
    text-align: center;
    color: var(--pub-accent);
}

.pub-user-logout {
    color: var(--pub-danger, #ef4444);
}

.pub-user-logout:hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--pub-danger, #ef4444);
}

.pub-user-logout i {
    color: var(--pub-danger, #ef4444);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--pub-text);
    border-radius: 2px;
    transition: all var(--pub-transition);
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(74, 158, 255, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(108, 92, 231, 0.1), transparent),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(74, 158, 255, 0.08), transparent);
    animation: heroGradient 8s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes heroGradient {
    0% {
        opacity: 0.8;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) rotate(1deg);
    }
    100% {
        opacity: 0.9;
        transform: scale(1) rotate(-1deg);
    }
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-particles span {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--pub-accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    50% { transform: translateY(-40px) translateX(20px); opacity: 0.8; }
}

.hero-content {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    max-width: 500px;
    width: 100%;
    padding: 0 24px;
    text-align: center;
}

.hero-content h1 {
    font-size: 18px;
    margin-bottom: 2px;
}

.hero-content .hero-typing {
    font-size: 14px;
    margin-bottom: 8px;
}

.btn-discord-sm {
    padding: 7px 16px !important;
    font-size: 12px !important;
}

.hero-banner-full {
    width: 100%;
    position: relative;
    margin-top: 0;
    overflow: hidden;
    height: 560px;
    background: var(--pub-bg);
}

.hero-banner-full .hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    border-radius: 0;
    box-shadow: none;
    border: none;
    transition: transform 0.6s ease;
}

.hero-banner-full:hover .hero-banner-img {
    transform: scale(1.02);
}

.hero-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 40%,
        rgba(13, 17, 28, 0.4) 55%,
        rgba(13, 17, 28, 0.8) 70%,
        rgba(13, 17, 28, 0.98) 100%
    );
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--pub-accent-muted);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: var(--pub-radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--pub-accent);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease backwards;
}

.hero h1 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--pub-accent) 0%, var(--pub-secondary) 50%, var(--pub-accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.hero-typing {
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 600;
    color: var(--pub-accent);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.typing-wrapper {
    position: relative;
    display: inline-block;
}

.typing-word {
    display: inline-block;
    border-right: 3px solid var(--pub-accent);
    padding-right: 4px;
    animation: blink 0.7s step-end infinite;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
}

@keyframes blink {
    50% { border-color: transparent; }
}

.hero p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--pub-text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.btn-discord {
    background: var(--pub-discord);
    color: white;
    padding: 14px 32px;
    border-radius: var(--pub-radius-full);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    transition: all var(--pub-transition);
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
    font-family: var(--pub-font);
}

.btn-discord:hover {
    background: var(--pub-discord-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.5);
}

.btn-discord:active {
    transform: translateY(-1px);
}

.btn-discord i,
.btn-discord svg {
    font-size: 20px;
}

.btn-premium {
    background: linear-gradient(135deg, var(--pub-accent), var(--pub-secondary));
    color: white;
    padding: 14px 32px;
    border-radius: var(--pub-radius-full);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    transition: all var(--pub-transition);
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.3);
    font-family: var(--pub-font);
    position: relative;
    overflow: hidden;
}

.btn-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--pub-secondary), var(--pub-accent));
    opacity: 0;
    transition: opacity var(--pub-transition);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.5);
}

.btn-premium:hover::before {
    opacity: 1;
}

.btn-premium span {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
    display: block;
}

.features {
    padding: 100px 24px;
    position: relative;
    background: var(--pub-bg);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header h2 .gradient-text {
    background: linear-gradient(135deg, var(--pub-accent), var(--pub-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 18px;
    color: var(--pub-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--pub-bg-card);
    border: 1px solid var(--pub-border);
    border-radius: var(--pub-radius-xl);
    padding: 32px;
    transition: all var(--pub-transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pub-accent), var(--pub-secondary));
    opacity: 0;
    transition: opacity var(--pub-transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--pub-border-strong);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px var(--pub-accent-muted);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card .feature-icon {
    width: 56px;
    height: 56px;
    background: var(--pub-accent-muted);
    border-radius: var(--pub-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--pub-accent);
    margin-bottom: 20px;
    transition: all var(--pub-transition);
}

.feature-card:hover .feature-icon {
    background: var(--pub-accent);
    color: white;
    box-shadow: 0 0 20px var(--pub-accent-glow);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--pub-text);
}

.feature-card p {
    font-size: 14px;
    color: var(--pub-text-secondary);
    line-height: 1.7;
}

.feature-card:nth-child(1) { animation: fadeInUp 0.6s ease 0.1s backwards; }
.feature-card:nth-child(2) { animation: fadeInUp 0.6s ease 0.2s backwards; }
.feature-card:nth-child(3) { animation: fadeInUp 0.6s ease 0.3s backwards; }
.feature-card:nth-child(4) { animation: fadeInUp 0.6s ease 0.4s backwards; }
.feature-card:nth-child(5) { animation: fadeInUp 0.6s ease 0.5s backwards; }
.feature-card:nth-child(6) { animation: fadeInUp 0.6s ease 0.6s backwards; }

.stats-bar {
    padding: 60px 24px;
    background: var(--pub-bg-card);
    border-top: 1px solid var(--pub-border);
    border-bottom: 1px solid var(--pub-border);
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 20% 50%, rgba(74, 158, 255, 0.05), transparent),
        radial-gradient(ellipse 50% 80% at 80% 50%, rgba(108, 92, 231, 0.05), transparent);
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--pub-accent);
    letter-spacing: -1px;
    line-height: 1.2;
}

.stat-number .counter-suffix {
    font-size: 0.6em;
    color: var(--pub-secondary);
}

.stat-label {
    font-size: 14px;
    color: var(--pub-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    background: var(--pub-border-strong);
    align-self: stretch;
}

.pricing {
    padding: 100px 24px;
    background: var(--pub-bg);
    position: relative;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.pricing-toggle span {
    font-size: 14px;
    color: var(--pub-text-muted);
    font-weight: 500;
}

.pricing-toggle span.active {
    color: var(--pub-text);
}

.pricing-switch {
    width: 48px;
    height: 26px;
    background: var(--pub-bg-elevated);
    border-radius: var(--pub-radius-full);
    border: 1px solid var(--pub-border-strong);
    cursor: pointer;
    position: relative;
    transition: all var(--pub-transition);
}

.pricing-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: var(--pub-accent);
    border-radius: 50%;
    transition: transform var(--pub-transition);
}

.pricing-switch.active {
    background: var(--pub-accent-muted);
    border-color: var(--pub-accent);
}

.pricing-switch.active::after {
    transform: translateX(22px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: var(--pub-bg-card);
    border: 1px solid var(--pub-border);
    border-radius: var(--pub-radius-xl);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    transition: all var(--pub-transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.recommended {
    border-color: var(--pub-accent);
    background: linear-gradient(180deg, rgba(74, 158, 255, 0.05) 0%, var(--pub-bg-card) 30%);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(74, 158, 255, 0.15);
    z-index: 2;
}

.pricing-card.recommended:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 60px rgba(74, 158, 255, 0.25);
}

.pricing-ribbon {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--pub-accent), var(--pub-secondary));
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 24px;
    border-radius: 0 0 var(--pub-radius) var(--pub-radius);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--pub-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.pricing-currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--pub-accent);
}

.pricing-amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--pub-text);
    line-height: 1;
    letter-spacing: -2px;
}

.pricing-period {
    font-size: 14px;
    color: var(--pub-text-muted);
    font-weight: 500;
}

.pricing-desc {
    font-size: 13px;
    color: var(--pub-text-secondary);
    margin-top: 8px;
}

.pricing-features {
    list-style: none;
    flex: 1;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--pub-text-secondary);
    border-bottom: 1px solid var(--pub-border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i.fa-check,
.pricing-features li .check {
    color: var(--pub-success);
    font-size: 14px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.pricing-features li i.fa-times,
.pricing-features li .cross {
    color: var(--pub-text-muted);
    font-size: 14px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.pricing-features li.disabled {
    color: var(--pub-text-muted);
    text-decoration: line-through;
    opacity: 0.5;
}

.pricing-cta {
    margin-top: auto;
}

.pricing-cta .btn-pricing {
    width: 100%;
    padding: 14px 24px;
    border-radius: var(--pub-radius-full);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--pub-transition);
    border: none;
    text-decoration: none;
    display: inline-block;
    font-family: var(--pub-font);
}

.pricing-card .btn-pricing {
    background: var(--pub-bg-elevated);
    color: var(--pub-text);
    border: 1px solid var(--pub-border-strong);
}

.pricing-card .btn-pricing:hover {
    background: var(--pub-accent-muted);
    border-color: var(--pub-accent);
    color: var(--pub-accent);
}

.pricing-card.recommended .btn-pricing {
    background: linear-gradient(135deg, var(--pub-accent), var(--pub-secondary));
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(74, 158, 255, 0.3);
}

.pricing-card.recommended .btn-pricing:hover {
    box-shadow: 0 8px 30px rgba(74, 158, 255, 0.5);
    transform: translateY(-2px);
}

.pricing-save {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    color: var(--pub-success);
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--pub-radius-full);
    margin-top: 8px;
}

.comparison-section {
    padding: 80px 24px;
    background: var(--pub-bg);
}

.comparison-table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 14px;
}

.comparison-table thead th {
    padding: 16px 20px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--pub-text);
    background: var(--pub-bg-elevated);
    border-bottom: 2px solid var(--pub-accent);
}

.comparison-table thead th:first-child {
    text-align: left;
    border-bottom-color: var(--pub-border-strong);
}

.comparison-table thead th.highlighted {
    background: rgba(74, 158, 255, 0.1);
    color: var(--pub-accent);
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--pub-border);
    transition: background var(--pub-transition-fast);
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table tbody tr:hover {
    background: var(--pub-accent-muted);
}

.comparison-table td {
    padding: 14px 20px;
    color: var(--pub-text-secondary);
}

.comparison-table td:first-child {
    font-weight: 500;
    color: var(--pub-text);
}

.comparison-table td:not(:first-child) {
    text-align: center;
}

.comparison-table td.highlighted {
    background: rgba(74, 158, 255, 0.03);
}

.comparison-table .check-icon {
    color: var(--pub-success);
    font-size: 18px;
}

.comparison-table .cross-icon {
    color: var(--pub-text-muted);
    font-size: 16px;
    opacity: 0.5;
}

.comparison-table .partial-icon {
    color: var(--pub-warning);
    font-size: 16px;
}

.feature-showcase {
    padding: 80px 24px;
    background: var(--pub-bg);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-card {
    background: var(--pub-bg-card);
    border: 1px solid var(--pub-border);
    border-radius: var(--pub-radius-xl);
    padding: 28px;
    transition: all var(--pub-transition);
}

.showcase-card:hover {
    border-color: var(--pub-border-strong);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.showcase-card .showcase-icon {
    width: 48px;
    height: 48px;
    background: var(--pub-secondary-muted);
    border-radius: var(--pub-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--pub-secondary);
    margin-bottom: 16px;
}

.showcase-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--pub-text);
}

.showcase-card p {
    font-size: 13px;
    color: var(--pub-text-secondary);
    line-height: 1.6;
}

.docs-page {
    padding: 120px 24px 80px;
    min-height: 100vh;
    background: var(--pub-bg);
}

.docs-header {
    text-align: center;
    margin-bottom: 60px;
}

.docs-header h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.docs-header p {
    font-size: 16px;
    color: var(--pub-text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.docs-card {
    background: var(--pub-bg-card);
    border: 1px solid var(--pub-border);
    border-radius: var(--pub-radius-xl);
    padding: 28px;
    text-decoration: none;
    transition: all var(--pub-transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.docs-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pub-accent), var(--pub-secondary));
    transform: scaleX(0);
    transition: transform var(--pub-transition);
    transform-origin: left;
}

.docs-card:hover {
    transform: translateY(-5px);
    border-color: var(--pub-border-strong);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.docs-card:hover::before {
    transform: scaleX(1);
}

.docs-card .docs-icon {
    width: 48px;
    height: 48px;
    background: var(--pub-accent-muted);
    border-radius: var(--pub-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--pub-accent);
    transition: all var(--pub-transition);
}

.docs-card:hover .docs-icon {
    background: var(--pub-accent);
    color: white;
    box-shadow: 0 0 15px var(--pub-accent-glow);
}

.docs-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--pub-text);
}

.docs-card p {
    font-size: 14px;
    color: var(--pub-text-secondary);
    line-height: 1.6;
}

.docs-card .docs-link-arrow {
    font-size: 13px;
    color: var(--pub-accent);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: gap var(--pub-transition);
}

.docs-card:hover .docs-link-arrow {
    gap: 10px;
}

.docs-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.docs-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--pub-bg-card);
    border: 1px solid var(--pub-border);
    border-radius: var(--pub-radius-full);
    color: var(--pub-text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--pub-transition);
}

.docs-links a:hover {
    background: var(--pub-accent-muted);
    border-color: var(--pub-accent);
    color: var(--pub-accent);
    transform: translateY(-2px);
}

.public-footer {
    background: var(--pub-bg-card);
    border-top: 1px solid var(--pub-border);
    padding: 60px 24px 30px;
    position: relative;
}

.public-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pub-accent), var(--pub-secondary), transparent);
    opacity: 0.5;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-glow {
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--pub-accent), var(--pub-secondary), var(--pub-accent), transparent);
    opacity: 0.6;
    filter: blur(1px);
}

.footer-brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: all var(--pub-transition);
}

.footer-brand-link:hover .footer-logo-img {
    transform: scale(1.05);
}

.footer-brand-name {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--pub-accent), var(--pub-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

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

.footer-brand .footer-logo span {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--pub-accent), var(--pub-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    font-size: 14px;
    color: var(--pub-text-muted);
    line-height: 1.7;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: var(--pub-bg-elevated);
    border: 1px solid var(--pub-border);
    border-radius: var(--pub-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pub-text-muted);
    text-decoration: none;
    transition: all var(--pub-transition);
    font-size: 16px;
}

.footer-social a:hover {
    background: var(--pub-accent-muted);
    border-color: var(--pub-accent);
    color: var(--pub-accent);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--pub-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--pub-text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: all var(--pub-transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-column ul li a:hover {
    color: var(--pub-accent);
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--pub-border);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--pub-text-muted);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 13px;
    color: var(--pub-text-muted);
    text-decoration: none;
    transition: color var(--pub-transition-fast);
}

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

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

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease backwards;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease backwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

.status-page {
    padding: 120px 24px 80px;
    min-height: 100vh;
}

.status-card {
    background: var(--pub-bg-card);
    border: 1px solid var(--pub-border);
    border-radius: var(--pub-radius-xl);
    padding: 24px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all var(--pub-transition);
}

.status-card:hover {
    border-color: var(--pub-border-strong);
}

.status-card .status-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--pub-text);
}

.status-card .status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
}

.status-card .status-indicator.online {
    color: var(--pub-success);
}

.status-card .status-indicator.offline {
    color: var(--pub-danger);
}

.status-card .status-indicator.degraded {
    color: var(--pub-warning);
}

.status-dot-pub {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-dot-pub.online {
    background: var(--pub-success);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.status-dot-pub.offline {
    background: var(--pub-danger);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.status-dot-pub.degraded {
    background: var(--pub-warning);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.cta-section {
    padding: 100px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(74, 158, 255, 0.08), transparent);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 18px;
    color: var(--pub-text-secondary);
    margin-bottom: 30px;
}

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

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

    .pricing-card.recommended {
        transform: scale(1);
    }

    .pricing-card.recommended:hover {
        transform: translateY(-5px);
    }

    .pricing-card:last-child {
        grid-column: 1 / -1;
        max-width: 340px;
        justify-self: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .comparison-table {
        font-size: 13px;
    }

    .comparison-table td,
    .comparison-table th {
        padding: 10px 12px;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 16px;
    }

    .navbar-brand img,
    .navbar-logo {
        height: 50px;
        width: 50px;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-actions {
        display: none;
    }

    .navbar-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 4px;
        transform: translateX(100%);
        transition: transform var(--pub-transition);
        overflow-y: auto;
        z-index: 999;
        align-items: stretch;
    }

    .navbar-nav.mobile-open {
        transform: translateX(0);
    }

    .navbar-nav .nav-link {
        padding: 16px 20px;
        font-size: 18px;
        width: 100%;
        border-radius: var(--pub-radius-lg);
        color: var(--pub-text);
        border-bottom: 1px solid var(--pub-border);
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:active {
        background: var(--pub-accent-muted);
    }

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

    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: var(--pub-bg-elevated);
        margin-top: 8px;
        box-shadow: none;
        display: none;
        min-width: 100%;
        border-radius: var(--pub-radius);
    }

    .nav-dropdown.active .nav-dropdown-menu {
        display: block;
    }

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

    .mobile-menu-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid var(--pub-border);
    }

    .mobile-menu-actions .btn-support,
    .mobile-menu-actions .btn-login-discord {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 16px;
    }

    .hero {
        min-height: auto;
        padding: 0 0 40px;
    }

    .hero-banner-full {
        height: 300px;
    }

    .hero-content {
        bottom: 20px;
        padding: 0 16px;
    }

    .hero-content h1 {
        font-size: 16px;
    }

    .hero-content .hero-typing {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .hero-typing {
        font-size: 20px;
        min-height: 40px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .hero-buttons .btn-discord,
    .hero-buttons .btn-premium {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 14px;
    }

    .btn-discord-sm {
        padding: 6px 14px !important;
        font-size: 11px !important;
    }

    .features {
        padding: 60px 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .feature-card:hover {
        transform: none;
    }

    .stats-bar {
        padding: 30px 16px;
    }

    .stats-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 0 auto;
        gap: 20px;
        padding: 0 8px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-card:last-child {
        max-width: none;
    }

    .pricing-card.recommended {
        transform: scale(1);
    }

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

    .comparison-section {
        padding: 60px 16px;
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .docs-page {
        padding: 100px 16px 60px;
    }

    .docs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .docs-card {
        padding: 24px 20px;
    }

    .feature-showcase {
        padding: 60px 16px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .showcase-card {
        padding: 24px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

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

    .footer-brand-link {
        justify-content: center;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-brand p {
        max-width: 100%;
        text-align: center;
    }

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

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

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

    .footer-column ul li a {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 14px;
    }

    .cta-section {
        padding: 60px 16px;
    }

    .cta-content p {
        font-size: 15px;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .cta-buttons .btn-discord,
    .cta-buttons .btn-premium {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .content-wrapper-public {
        padding: 16px;
    }

    .status-hero {
        padding-top: calc(var(--pub-navbar-height) + 30px);
        padding-bottom: 40px;
    }

    .status-title {
        font-size: 28px;
    }

    .status-search-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .navbar-brand img,
    .navbar-logo {
        height: 44px;
        width: 44px;
    }

    .hero-banner-full {
        height: 250px;
    }

    .hero-content {
        bottom: 16px;
        padding: 0 12px;
    }

    .hero-content h1 {
        font-size: 14px;
    }

    .hero-content .hero-typing {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .hero h1 {
        font-size: 22px;
    }

    .hero-typing {
        font-size: 16px;
        min-height: 30px;
    }

    .btn-discord-sm {
        padding: 5px 12px !important;
        font-size: 10px !important;
    }

    .stats-container {
        gap: 16px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 12px;
    }

    .pricing-card {
        padding: 24px 16px;
    }

    .pricing-amount {
        font-size: 42px;
    }

    .docs-page {
        padding: 90px 12px 40px;
    }

    .docs-card {
        padding: 20px 16px;
    }

    .docs-links {
        flex-direction: column;
        align-items: center;
    }

    .docs-links a {
        width: 100%;
        justify-content: center;
    }

    .public-footer {
        padding: 40px 16px 20px;
    }

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

    .section-header h2 {
        font-size: 22px;
    }

    .status-title {
        font-size: 24px;
    }

    .status-subtitle {
        font-size: 14px;
    }

    .status-container {
        padding: 0 12px;
    }

    .pricing-hero .hero-content h1,
    .pricing-hero h1 {
        font-size: 36px !important;
        letter-spacing: 2px !important;
    }
}

.public-page a {
    color: var(--pub-accent);
    text-decoration: none;
    transition: color var(--pub-transition-fast);
}

.public-page a:hover {
    color: var(--pub-accent-hover);
}

.text-gradient {
    background: linear-gradient(135deg, var(--pub-accent), var(--pub-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: var(--pub-bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--pub-border);
}

.glow-border {
    border: 1px solid var(--pub-accent);
    box-shadow: 0 0 20px var(--pub-accent-muted), inset 0 0 20px var(--pub-accent-muted);
}

.container-public {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.mt-auto {
    margin-top: auto;
}

.status-hero {
    padding-top: calc(var(--pub-navbar-height) + 60px);
    padding-bottom: 80px;
    min-height: 100vh;
}

.status-title .gradient-text {
    background: linear-gradient(135deg, var(--pub-accent) 0%, var(--pub-secondary) 50%, var(--pub-accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

.status-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.status-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    text-align: center;
}

.status-subtitle {
    color: var(--pub-text-muted);
    font-size: 16px;
    text-align: center;
    margin-bottom: 40px;
}

.status-global-card {
    background: var(--pub-bg-card);
    border: 1px solid var(--pub-border);
    border-radius: var(--pub-radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.status-global-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--pub-text-secondary);
}

.status-global-header i {
    color: var(--pub-accent);
}

.status-global-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.status-dot-online {
    background: var(--pub-success);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    animation: pulse-dot 2s ease-in-out infinite;
}

.status-dot-offline {
    background: var(--pub-danger);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-text-online {
    color: var(--pub-success);
    font-weight: 600;
    font-size: 15px;
}

.status-text-offline {
    color: var(--pub-danger);
    font-weight: 600;
    font-size: 15px;
}

.status-search-card {
    background: var(--pub-bg-card);
    border: 1px solid var(--pub-border);
    border-radius: var(--pub-radius-lg);
    padding: 32px;
    margin-bottom: 24px;
}

.status-search-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-search-title i {
    color: var(--pub-accent);
}

.status-search-desc {
    color: var(--pub-text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.status-search-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.status-input-group {
    display: flex;
    gap: 12px;
}

.status-input {
    flex: 1;
    background: var(--pub-bg-secondary);
    border: 1px solid var(--pub-border-strong);
    border-radius: var(--pub-radius);
    padding: 12px 16px;
    color: var(--pub-text);
    font-family: var(--pub-font);
    font-size: 14px;
    outline: none;
    transition: all var(--pub-transition-fast);
}

.status-input:focus {
    border-color: var(--pub-accent);
    box-shadow: 0 0 0 3px var(--pub-accent-muted);
}

.status-input::placeholder {
    color: var(--pub-text-muted);
}

.status-search-btn {
    background: linear-gradient(135deg, var(--pub-accent), var(--pub-secondary));
    color: white;
    border: none;
    border-radius: var(--pub-radius);
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--pub-transition);
    white-space: nowrap;
}

.status-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 158, 255, 0.3);
}

.status-input-hint {
    font-size: 12px;
    color: var(--pub-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-input-hint i {
    color: var(--pub-accent);
    font-size: 11px;
}

.status-result-card {
    background: var(--pub-bg-card);
    border: 1px solid var(--pub-border);
    border-radius: var(--pub-radius-lg);
    padding: 28px;
}

.status-result-error {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: var(--pub-radius);
    color: var(--pub-danger);
    font-size: 14px;
}

.status-result-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-result-title i {
    color: var(--pub-accent);
}

.status-result-title code {
    background: var(--pub-bg-elevated);
    padding: 2px 8px;
    border-radius: var(--pub-radius);
    font-size: 13px;
    color: var(--pub-accent);
}

.status-result-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.status-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--pub-bg-secondary);
    border-radius: var(--pub-radius);
    border: 1px solid var(--pub-border);
}

.status-result-label {
    font-size: 14px;
    color: var(--pub-text-secondary);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--pub-radius-full);
    font-size: 13px;
    font-weight: 600;
}

.status-badge-ok {
    background: rgba(16, 185, 129, 0.15);
    color: var(--pub-success);
}

.status-badge-err {
    background: rgba(239, 68, 68, 0.15);
    color: var(--pub-danger);
}

.status-badge-warn {
    background: rgba(245, 158, 11, 0.15);
    color: var(--pub-warning);
}

.status-badge-premium {
    background: rgba(108, 92, 231, 0.15);
    color: var(--pub-secondary);
}

.status-badge-neutral {
    background: var(--pub-bg-elevated);
    color: var(--pub-text-muted);
}

.status-result-hint {
    margin-top: 16px;
    padding: 14px;
    background: var(--pub-accent-muted);
    border-radius: var(--pub-radius);
    font-size: 13px;
    color: var(--pub-text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-result-hint a {
    color: var(--pub-accent);
    text-decoration: none;
    font-weight: 600;
}

.status-result-hint a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .status-input-group {
        flex-direction: column;
    }
    .status-global-card {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

.mb-0 {
    margin-bottom: 0;
}

.gap-sm {
    gap: 8px;
}

.gap-md {
    gap: 16px;
}

.gap-lg {
    gap: 24px;
}
