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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0c0e11;
    color: #e2e4ea;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(100, 160, 210, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 160, 210, 0.035) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 80% 60% at 15% 0%, rgba(80, 140, 200, 0.09) 0%, transparent 55%),
                radial-gradient(ellipse 60% 50% at 85% 90%, rgba(60, 120, 180, 0.06) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.apk-download-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.apk-label {
    font-size: 0.95rem;
    color: #8a9ab0;
}

.apk-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(10, 12, 16, 0.8);
    border: 1px solid rgba(80, 140, 200, 0.3);
    border-radius: 8px;
    color: #e2e4ea;
    font-size: 0.95rem;
}

.integrations-banner {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(80, 140, 200, 0.12);
    background: linear-gradient(90deg, rgba(88, 101, 242, 0.07) 50%, rgba(203, 56, 55, 0.06) 50%);
}

.integrations-banner-inner {
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
}

.integration-banner-divider {
    width: 1px;
    background: rgba(80, 140, 200, 0.12);
    margin: 1.75rem 0;
}

.integration-banner-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem 3rem;
}

.discord-banner-item {
    background: transparent;
}

.npm-banner-item {
    background: transparent;
}

.integration-banner-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.discord-icon {
    background: rgba(88, 101, 242, 0.15);
    border: 1px solid rgba(88, 101, 242, 0.3);
    color: #7289da;
}

.npm-icon {
    background: rgba(203, 56, 55, 0.15);
    border: 1px solid rgba(203, 56, 55, 0.35);
    color: #cb3837;
}

.integration-banner-text {
    flex: 1;
    min-width: 0;
}

.integration-banner-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.integration-banner-desc {
    font-size: 0.88rem;
    color: #8a9ab0;
    margin: 0 0 0.65rem 0;
    line-height: 1.5;
}

.integration-banner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}

.integration-banner-features span {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.integration-banner-features span i {
    font-size: 0.72rem;
}

.discord-features span {
    color: #7289da;
}

.npm-features span {
    color: #cb3837;
}

.integration-banner-action {
    flex-shrink: 0;
}

.btn-discord {
    background: #5865f2;
    font-size: 0.95rem;
    padding: 0.85rem 1.75rem;
    white-space: nowrap;
}

.btn-discord:not(:disabled):hover {
    background: #4752c4;
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
    transform: translateY(-2px);
}

.btn-npm {
    background: #cb3837;
    font-size: 0.95rem;
    padding: 0.85rem 1.75rem;
    white-space: nowrap;
}

.btn-npm:not(:disabled):hover {
    background: #b02f2e;
    box-shadow: 0 8px 20px rgba(203, 56, 55, 0.4);
    transform: translateY(-2px);
}

.download-filters {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    background: rgba(20, 24, 32, 0.6);
    color: #8a9ab0;
    border: 1px solid rgba(80, 140, 200, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    color: #6db0e8;
    border-color: rgba(80, 140, 200, 0.45);
    background: rgba(80, 140, 200, 0.08);
}

.filter-btn.active {
    background: #4a90c8;
    color: #ffffff;
    border-color: #4a90c8;
    box-shadow: 0 4px 14px rgba(74, 144, 200, 0.35);
}

.download-section {
    margin-bottom: 3.5rem;
}

.download-section:last-child {
    margin-bottom: 0;
}

.download-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(80, 140, 200, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.download-section-title i {
    color: #6db0e8;
    font-size: 1.3rem;
}

.notice-box {
    background: rgba(20, 24, 32, 0.4);
    border: 1px solid rgba(80, 140, 200, 0.12);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    color: #8a9ab0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.notice-box i {
    color: #6db0e8;
    flex-shrink: 0;
}

.info-card {
    background: rgba(20, 24, 32, 0.4);
    border: 1px solid rgba(80, 140, 200, 0.12);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.info-card i {
    color: #8a9ab0;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.info-card p {
    color: #8a9ab0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.download-section.hidden {
    display: none;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
}

.badge-live      { background: rgba(34,197,94,0.15);   color: #22c55e; border: 1px solid rgba(34,197,94,0.35); }
.badge-soon      { background: rgba(59,130,246,0.15);  color: #60a5fa; border: 1px solid rgba(59,130,246,0.35); }
.badge-postponed { background: rgba(251,191,36,0.15);  color: #fbbf24; border: 1px solid rgba(251,191,36,0.35); }
.badge-unknown   { background: rgba(156,163,175,0.15); color: #9ca3af; border: 1px solid rgba(156,163,175,0.35); }
.badge-none      { background: rgba(239,68,68,0.12);   color: #f87171; border: 1px solid rgba(239,68,68,0.3); }

.card-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #b0bcc8;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.855rem;
    color: #e2e4ea;
    line-height: 1.45;
}

.feature-list li i {
    margin-top: 0.15rem;
    font-size: 0.8rem;
    color: #6db0e8;
    flex-shrink: 0;
    width: 1rem;
    text-align: center;
}

.feature-list li strong {
    color: #f0f2f5;
}

.feature-note {
    color: #8a9ab0;
    font-size: 0.82rem;
}

.ios-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.84rem;
    color: #dca03c;
    line-height: 1.5;
}

.ios-note i {
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.navbar {
    background: rgba(12, 14, 17, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(80, 140, 200, 0.15);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.nav-logo {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav-logo:hover {
    color: #6db0e8;
}

.nav-logo span {
    color: #6db0e8;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #e2e4ea;
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #8a9ab0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.nav-link:hover {
    color: #6db0e8;
    background: rgba(74, 144, 200, 0.09);
}

.nav-link.active {
    background: #4a90c8;
    color: white;
}

.dropdown-icon {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(18, 22, 30, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(80, 140, 200, 0.2);
    border-radius: 8px;
    margin-top: 0.5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.875rem 1.25rem;
    color: #8a9ab0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.dropdown-link i {
    width: 16px;
    font-size: 0.8rem;
    color: #5a7a9a;
}

.dropdown-link:hover {
    background: rgba(74, 144, 200, 0.09);
    color: #6db0e8;
}

.dropdown-link:hover i {
    color: #6db0e8;
}

.dropdown-link:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown-link:last-child {
    border-radius: 0 0 8px 8px;
}

.hero {
    background: linear-gradient(135deg, rgba(20, 26, 36, 0.5) 0%, rgba(12, 14, 17, 0.5) 100%);
    backdrop-filter: blur(10px);
    padding: 6rem 3rem;
    text-align: center;
    border-bottom: 1px solid rgba(80, 140, 200, 0.15);
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6db0e8;
    background: rgba(74, 144, 200, 0.1);
    border: 1px solid rgba(80, 140, 200, 0.25);
    padding: 0.35rem 0.85rem;
    border-radius: 99px;
    margin-bottom: 2rem;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #6db0e8, #a8d4f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.4rem;
    color: #8a9ab0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    background: #4a90c8;
    color: white;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #3a7ab8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 144, 200, 0.4);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-primary.loading .btn-loader {
    display: inline-block;
}

.btn-loader {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    background: transparent;
    color: #6db0e8;
    border: 2px solid #4a90c8;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(74, 144, 200, 0.1);
    transform: translateY(-2px);
}

.section-wide {
    padding: 4rem 3rem;
    max-width: 1800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3rem;
    text-align: center;
}

.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5a7a9a;
    margin-bottom: 0.75rem;
}

.section-label::before,
.section-label::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: rgba(80, 140, 200, 0.25);
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: #8a9ab0;
    max-width: 560px;
    margin: 0 auto;
}

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

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

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

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

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

.card {
    background: rgba(18, 22, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(80, 140, 200, 0.12);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: #4a90c8;
    box-shadow: 0 8px 24px rgba(74, 144, 200, 0.18);
    transform: translateY(-4px);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(74, 144, 200, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: #6db0e8;
    font-size: 1.5rem;
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.card p {
    color: #8a9ab0;
    line-height: 1.6;
    font-size: 1rem;
}

.container {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
    padding: 3rem;
    flex: 1;
    position: relative;
    z-index: 1;
}

.checker-form {
    background: rgba(18, 22, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(80, 140, 200, 0.15);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.checker-title {
    font-size: 1.1rem;
    font-weight: 650;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.checker-title i {
    color: #6db0e8;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(10, 12, 16, 0.8);
    border: 1px solid rgba(80, 140, 200, 0.25);
    border-radius: 8px;
    color: #e2e4ea;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4a90c8;
    background: rgba(18, 22, 30, 0.9);
    box-shadow: 0 0 0 3px rgba(74, 144, 200, 0.15);
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: #5a7a9a;
    font-size: 0.9rem;
}

.results-section {
    margin-top: 2rem;
}

.results-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 700;
}

.results-container {
    background: rgba(18, 22, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(80, 140, 200, 0.15);
    border-radius: 12px;
    padding: 2rem;
}

.result-card {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(80, 140, 200, 0.08);
}

.result-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.result-card:first-child {
    padding-top: 0;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.result-location {
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
}

.result-provider {
    color: #5a7a9a;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.result-status {
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.status-resolved {
    background: rgba(80, 200, 130, 0.15);
    color: #50c882;
    border: 1px solid rgba(80, 200, 130, 0.35);
}

.status-failed {
    background: rgba(210, 80, 80, 0.15);
    color: #e07070;
    border: 1px solid rgba(210, 80, 80, 0.35);
}

.result-records {
    display: grid;
    gap: 1rem;
}

.record-item {
    background: rgba(10, 12, 16, 0.8);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #4a90c8;
}

.record-item pre {
    margin: 0;
    color: #b0bcc8;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    white-space: pre-wrap;
    word-break: break-all;
}

.email-summary {
    margin-bottom: 2rem;
}

.summary-card {
    background: rgba(18, 22, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(80, 140, 200, 0.15);
    border-radius: 12px;
    padding: 2rem;
}

.summary-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
}

.email-results-container {
    background: rgba(18, 22, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(80, 140, 200, 0.15);
    border-radius: 12px;
    padding: 2rem;
}

.email-result-card {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(80, 140, 200, 0.08);
}

.email-result-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.email-result-card:first-child {
    padding-top: 0;
}

.email-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.email-result-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
}

.email-result-content {
    background: rgba(10, 12, 16, 0.8);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #4a90c8;
}

.email-result-content pre {
    margin: 0;
    color: #b0bcc8;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    white-space: pre-wrap;
    word-break: break-all;
}

.badge-success {
    background: rgba(80, 200, 130, 0.15);
    color: #50c882;
    border: 1px solid rgba(80, 200, 130, 0.35);
}

.badge-warning {
    background: rgba(220, 160, 60, 0.15);
    color: #dca03c;
    border: 1px solid rgba(220, 160, 60, 0.35);
}

.badge-error {
    background: rgba(210, 80, 80, 0.15);
    color: #e07070;
    border: 1px solid rgba(210, 80, 80, 0.35);
}

.pricing-hero {
    background: rgba(20, 26, 36, 0.5);
    backdrop-filter: blur(10px);
    padding: 6rem 3rem;
    text-align: center;
    border-bottom: 1px solid rgba(80, 140, 200, 0.15);
    position: relative;
    z-index: 1;
}

.pricing-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.pricing-hero p {
    font-size: 1.4rem;
    color: #8a9ab0;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-content {
    max-width: 1800px;
    margin: 0 auto;
    padding: 4rem 3rem;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: rgba(18, 22, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(74, 144, 200, 0.35);
    border-radius: 12px;
    padding: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(74, 144, 200, 0.12);
}

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

.pricing-price {
    font-size: 5rem;
    font-weight: 800;
    color: #6db0e8;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 1.5rem;
    color: #8a9ab0;
}

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

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(10, 12, 16, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(80, 140, 200, 0.08);
}

.pricing-feature i {
    color: #50c882;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.pricing-feature span {
    color: #b0bcc8;
    font-size: 1rem;
}

.footer {
    background: rgba(12, 14, 17, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(80, 140, 200, 0.12);
    padding: 3rem 3rem 2rem;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1800px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #ffffff;
}

.footer-description {
    color: #8a9ab0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(74, 144, 200, 0.1);
    color: #6db0e8;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(80, 140, 200, 0.2);
    font-size: 1.1rem;
}

.social-link:hover {
    background: #4a90c8;
    color: white;
    transform: translateY(-3px);
}

.footer-links ul,
.footer-resources ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-resources ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a,
.footer-resources ul li a {
    color: #8a9ab0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-links ul li a:hover,
.footer-resources ul li a:hover {
    color: #6db0e8;
}

.legacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: #5a7a9a;
    background: rgba(20, 26, 36, 0.8);
    border: 1px solid rgba(80, 140, 200, 0.12);
    padding: 0.3rem 0.75rem;
    border-radius: 99px;
    margin-bottom: 1rem;
}

.legacy-badge i {
    color: #4a90c8;
    font-size: 0.7rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(80, 140, 200, 0.08);
    text-align: center;
}

.footer-copyright {
    color: #5a7a9a;
    font-size: 1rem;
}

.footer-copyright a {
    color: #6db0e8;
    text-decoration: none;
}

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

.stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(80, 140, 200, 0.08);
    border: 1px solid rgba(80, 140, 200, 0.12);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    background: rgba(18, 22, 30, 0.6);
    padding: 2rem;
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #ffffff;
    display: block;
}

.stat-value span {
    color: #6db0e8;
}

.stat-label {
    font-size: 0.85rem;
    color: #5a7a9a;
    margin-top: 0.25rem;
}

.community-notice {
    position: relative;
    z-index: 1;
    background: rgba(251, 191, 36, 0.06);
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
    border-top: 1px solid rgba(251, 191, 36, 0.2);
    padding: 0.9rem 3rem;
}
 
.community-notice-inner {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}
 
.community-notice-icon {
    flex-shrink: 0;
    color: #fbbf24;
    font-size: 1rem;
    margin-top: 0.15rem;
}
 
.community-notice-body {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.25rem 0.5rem;
}
 
.community-notice-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fbbf24;
    white-space: nowrap;
    margin: 0;
}
 
.community-notice-title::after {
    content: ' —';
}
 
.community-notice-text {
    font-size: 0.85rem;
    color: #a89060;
    line-height: 1.55;
    margin: 0;
}
 
.community-notice-text strong {
    color: #d4a042;
    font-weight: 600;
}

@media (max-width: 1400px) {
    .grid-6 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .grid-4, .grid-5, .grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .integrations-banner {
        background: linear-gradient(180deg, rgba(88, 101, 242, 0.07) 50%, rgba(203, 56, 55, 0.06) 50%);
    }

    .integrations-banner-inner {
        grid-template-columns: 1fr;
    }

    .integration-banner-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }

    .integration-banner-item {
        padding: 1.5rem 2rem;
    }
    
    .community-notice {
        padding: 0.9rem 1.5rem;
    }
 
    .community-notice-body {
        flex-direction: column;
        gap: 0.15rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        background: rgba(12, 14, 17, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        transition: left 0.3s ease;
        max-height: calc(100vh - 73px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 1rem 1.25rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0;
        border: none;
        background: rgba(10, 12, 16, 0.8);
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-item.active .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-link {
        padding: 0.75rem 1.5rem;
    }

    .hero {
        padding: 4rem 1.5rem;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .integrations-banner {
        background: linear-gradient(180deg, rgba(88, 101, 242, 0.07) 50%, rgba(203, 56, 55, 0.06) 50%);
    }

    .integrations-banner-inner {
        grid-template-columns: 1fr;
    }

    .integration-banner-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }

    .integration-banner-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        gap: 1rem;
    }

    .integration-banner-action {
        width: 100%;
    }

    .btn-discord,
    .btn-npm {
        width: 100%;
        justify-content: center;
    }

    .section-wide {
        padding: 3rem 1.5rem;
    }

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

    .grid-2, .grid-3, .grid-4, .grid-5, .grid-6 {
        grid-template-columns: 1fr;
    }

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

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

    .pricing-hero h1 {
        font-size: 2.5rem;
    }

    .pricing-hero p {
        font-size: 1.1rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .pricing-price {
        font-size: 3.5rem;
    }

    .pricing-features {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 2rem 1.5rem;
    }

    .checker-form {
        padding: 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .badges-modal-content {
        padding: 32px 24px;
        width: 95%;
    }

    .badges-modal-title {
        font-size: 1.25rem;
    }

    .badges-modal-content > a {
        flex: 0 1 100%;
        padding: 16px;
    }

    .footer-grid {
        text-align: left;
    }

    .featured-badges-btn {
        width: 100%;
        justify-content: center;
    }

    .stats-bar {
        grid-template-columns: 1fr;
    }
}