/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Unbounded', system-ui, -apple-system, sans-serif;
    background-color: #000000;
    color: #fafafa;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Header Styles */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
}

#header.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #171717;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    color: white;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-desktop a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #a3a3a3;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-desktop a:hover {
    color: white;
}

@media (min-width: 768px) {
    .header-content {
        height: 5rem;
    }
    
    .nav-desktop {
        display: flex;
    }
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 9999px;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(90deg, #06b6d4 0%, #3b82f6 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #0ea5e9 0%, #60a5fa 100%);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.3);
}

.btn-sm {
    height: 2.5rem;
    padding: 0 1.5rem;
    font-size: 0.875rem;
}

.btn-lg {
    height: 3rem;
    padding: 0 1.5rem;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .btn-lg {
        height: 3.5rem;
        padding: 0 2rem;
        font-size: 1rem;
    }
}

.btn svg {
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(4px);
}

/* Main Content */
.main-content {
    min-height: 100vh;
    background-color: #000000;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    background-color: #000000;
    padding: 6rem 0 5rem;
}

@media (min-width: 768px) {
    .hero {
        padding: 8rem 0 8rem;
    }
}

/* Hero Background Effects */
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, #1a1a1a 1px, transparent 1px),
        linear-gradient(to bottom, #1a1a1a 1px, transparent 1px);
    background-size: 4rem 4rem;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 60%, transparent 100%);
}

.hero-gradient-1 {
    position: absolute;
    left: 20%;
    top: 10%;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.4) 0%, rgba(59, 130, 246, 0.3) 50%, rgba(99, 102, 241, 0.4) 100%);
    filter: blur(80px);
    pointer-events: none;
}

.hero-gradient-2 {
    position: absolute;
    right: 15%;
    top: 20%;
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.4) 0%, rgba(6, 182, 212, 0.3) 50%, rgba(59, 130, 246, 0.4) 100%);
    filter: blur(80px);
    pointer-events: none;
}

.hero-gradient-3 {
    position: absolute;
    left: 10%;
    bottom: 10%;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4) 0%, rgba(99, 102, 241, 0.3) 50%, rgba(6, 182, 212, 0.4) 100%);
    filter: blur(80px);
    pointer-events: none;
}

@media (min-width: 768px) {
    .hero-gradient-1 {
        width: 37.5rem;
        height: 37.5rem;
    }
    
    .hero-gradient-2 {
        width: 31.25rem;
        height: 31.25rem;
    }
    
    .hero-gradient-3 {
        width: 28rem;
        height: 28rem;
    }
}

.hero-line-top {
    position: absolute;
    left: 50%;
    top: 0;
    width: 50rem;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent 0%, rgba(6, 182, 212, 0.5) 50%, transparent 100%);
}

.hero-line-left {
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 50rem;
    transform: translateY(-50%);
    background: linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.3) 50%, transparent 100%);
}

.hero-line-right {
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 50rem;
    transform: translateY(-50%);
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.3) 50%, transparent 100%);
}

.hero-container {
    position: relative;
}

.hero-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #a3a3a3;
    background-color: rgba(23, 23, 23, 0.5);
    border: 1px solid #262626;
    border-radius: 9999px;
}

@media (min-width: 640px) {
    .hero-badge {
        margin-bottom: 1.5rem;
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

.hero-title {
    margin-bottom: 1rem;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: white;
}

@media (min-width: 640px) {
    .hero-title {
        margin-bottom: 1.5rem;
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.gradient-text {
    background: linear-gradient(90deg, #06b6d4 0%, #3b82f6 50%, #6366f1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #d4d4d4;
}

@media (min-width: 640px) {
    .hero-subtitle {
        margin-bottom: 1rem;
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-description {
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #a3a3a3;
}

@media (min-width: 640px) {
    .hero-description {
        margin-bottom: 3rem;
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.desktop-break {
    display: none;
}

@media (min-width: 640px) {
    .desktop-break {
        display: block;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.hero-cta .btn {
    width: 100%;
}

@media (min-width: 640px) {
    .hero-cta .btn {
        width: auto;
    }
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 5rem;
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    padding: 1.25rem;
    text-align: center;
    background-color: rgba(23, 23, 23, 0.5);
    border: 1px solid #262626;
    border-radius: 0.75rem;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #404040;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

@media (min-width: 640px) {
    .stat-card {
        padding: 1.5rem;
    }
}

.stat-icon {
    margin: 0 auto 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    color: #a3a3a3;
}

@media (min-width: 640px) {
    .stat-icon {
        margin-bottom: 0.75rem;
        width: 2rem;
        height: 2rem;
    }
}

.stat-label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #737373;
}

@media (min-width: 640px) {
    .stat-label {
        font-size: 0.875rem;
    }
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
}

@media (min-width: 640px) {
    .stat-value {
        font-size: 2.25rem;
    }
}

/* Features Section */
.features {
    background-color: #000000;
    padding: 4rem 0;
}

@media (min-width: 640px) {
    .features {
        padding: 6rem 0;
    }
}

.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #737373;
}

@media (min-width: 640px) {
    .section-badge {
        font-size: 0.875rem;
    }
}

.badge-icon {
    color: #06b6d4;
}

.section-title {
    margin-bottom: 1rem;
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: white;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1rem;
    color: #a3a3a3;
}

@media (min-width: 640px) {
    .section-description {
        font-size: 1.125rem;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .features-grid {
        margin-top: 3rem;
        margin-bottom: 4rem;
    }
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.feature-card {
    position: relative;
    overflow: hidden;
    background-color: rgba(23, 23, 23, 0.5);
    border: 1px solid #262626;
    border-radius: 1rem;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #404040;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

.feature-gradient {
    position: absolute;
    left: 0;
    top: 0;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
}

@media (min-width: 640px) {
    .feature-gradient {
        width: 10rem;
        height: 10rem;
    }
}

.gradient-orange {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.3) 0%, rgba(14, 165, 233, 0.2) 50%, transparent 100%);
}

.gradient-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(99, 102, 241, 0.2) 50%, transparent 100%);
}

.gradient-purple {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.2) 50%, transparent 100%);
}

.feature-content {
    position: relative;
    padding: 1.5rem;
}

@media (min-width: 640px) {
    .feature-content {
        padding: 2rem;
    }
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    background-color: #262626;
    border-radius: 1rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}

@media (min-width: 640px) {
    .feature-icon {
        width: 3.5rem;
        height: 3.5rem;
    }
}

.feature-title {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}

@media (min-width: 640px) {
    .feature-title {
        margin-bottom: 0.75rem;
        font-size: 1.25rem;
    }
}

.feature-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #a3a3a3;
}

@media (min-width: 640px) {
    .feature-description {
        font-size: 1rem;
    }
}

/* Technologies */
.technologies {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .technologies {
        gap: 0.75rem;
    }
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #d4d4d4;
    background-color: rgba(23, 23, 23, 0.5);
    border: 1px solid #262626;
    border-radius: 9999px;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background-color: #262626;
    border-color: rgba(6, 182, 212, 0.5);
    color: white;
}

@media (min-width: 640px) {
    .tech-badge {
        gap: 0.5rem;
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* Servers Section */
.servers {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    padding: 4rem 0;
}

@media (min-width: 640px) {
    .servers {
        padding: 6rem 0;
    }
}

.servers .section-header {
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .servers .section-header {
        margin-bottom: 4rem;
    }
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.server-card {
    background-color: rgba(23, 23, 23, 0.5);
    border: 1px solid #262626;
    border-radius: 0.75rem;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
    width: 100%;
}

.server-card:hover {
    border-color: #404040;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

.server-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.5rem;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .server-header {
        padding: 2rem;
    }
}

.server-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
}

@media (min-width: 640px) {
    .server-info {
        gap: 0.75rem;
    }
}

.server-flag {
    font-size: 1.875rem;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .server-flag {
        font-size: 2.25rem;
    }
}

.server-info > div {
    flex: 1;
    min-width: 0;
}

.server-country {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 640px) {
    .server-country {
        font-size: 1.25rem;
    }
}

.server-city {
    font-size: 0.75rem;
    color: #a3a3a3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 640px) {
    .server-city {
        font-size: 0.875rem;
    }
}

.server-status {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.125rem 0.5rem;
    font-size: 0.625rem;
    font-weight: 500;
    color: #4ade80;
    background-color: rgba(20, 83, 45, 0.5);
    border-radius: 9999px;
    flex-shrink: 0;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .server-status {
        gap: 0.25rem;
        padding: 0.25rem 0.75rem;
        font-size: 0.75rem;
    }
}

.status-dot {
    width: 0.25rem;
    height: 0.25rem;
    background-color: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .status-dot {
        width: 0.375rem;
        height: 0.375rem;
    }
}

.server-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem 1.25rem;
    border-top: 1px solid #262626;
}

@media (min-width: 640px) {
    .server-stats {
        gap: 0.75rem;
        padding: 1rem 1.5rem 1.5rem;
    }
}

.server-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
}

@media (min-width: 640px) {
    .server-stat {
        font-size: 0.875rem;
    }
}

.server-stat .stat-label {
    margin-bottom: 0;
    font-size: inherit;
    text-transform: none;
    letter-spacing: normal;
    color: #737373;
}

.server-stat .stat-value {
    font-size: inherit;
    font-weight: 600;
    color: white;
}

/* SEO Content Section */
.seo-content {
    background-color: #000000;
    padding: 4rem 0;
}

.seo-content-wrapper {
    max-width: 56rem;
    margin: 0 auto;
}

.seo-title {
    margin-bottom: 1.5rem;
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
}

.seo-text {
    color: #a3a3a3;
    line-height: 1.6;
}

.seo-text p {
    margin-bottom: 1.5rem;
}

.seo-subtitle {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.seo-link {
    color: #06b6d4;
    text-decoration: underline;
    transition: color 0.2s;
}

.seo-link:hover {
    color: #0ea5e9;
}

.seo-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.seo-list li {
    margin-bottom: 0.5rem;
}

.keywords-box {
    margin-top: 2rem;
    padding: 2rem;
    background-color: rgba(23, 23, 23, 0.5);
    border: 1px solid #262626;
    border-radius: 1rem;
    backdrop-filter: blur(16px);
}

.keywords-title {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.keywords-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.keyword {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #d4d4d4;
    background-color: #171717;
    border: 1px solid #262626;
    border-radius: 9999px;
}

/* FAQ Section */
.faq {
    background-color: #000000;
    padding: 4rem 0;
}

@media (min-width: 640px) {
    .faq {
        padding: 6rem 0;
    }
}

.faq .section-header {
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .faq .section-header {
        margin-bottom: 4rem;
    }
}

.faq-list {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: rgba(23, 23, 23, 0.5);
    border: 1px solid #262626;
    border-radius: 1rem;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: #404040;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

.faq-item.active {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.5rem;
    text-align: left;
    font-family: 'Unbounded', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

@media (min-width: 640px) {
    .faq-question {
        padding: 1.5rem;
        font-size: 1.125rem;
    }
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    font-family: 'Unbounded', system-ui, -apple-system, sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #a3a3a3;
}

@media (min-width: 640px) {
    .faq-answer-content {
        font-size: 1rem;
    }
}

/* CTA Section */
.cta {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 50%, #0a0a0a 100%);
    padding: 4rem 0;
}

@media (min-width: 640px) {
    .cta {
        padding: 6rem 0;
    }
}

.cta-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    margin-bottom: 1rem;
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

@media (min-width: 640px) {
    .cta-title {
        margin-bottom: 1.5rem;
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-description {
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #a3a3a3;
}

@media (min-width: 640px) {
    .cta-description {
        margin-bottom: 2.5rem;
        font-size: 1.125rem;
    }
}

.cta-content .btn {
    width: 100%;
}

@media (min-width: 640px) {
    .cta-content .btn {
        width: auto;
    }
}

/* Footer */
.footer {
    background-color: #000000;
    border-top: 1px solid #171717;
    padding: 2rem 0;
}

@media (min-width: 640px) {
    .footer {
        padding: 3rem 0;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .footer-grid {
        gap: 3rem;
        margin-bottom: 3rem;
    }
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .footer-logo {
        margin-bottom: 1rem;
    }
}

.footer-logo .logo-icon {
    width: 2.25rem;
    height: 2.25rem;
}

@media (min-width: 640px) {
    .footer-logo .logo-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.footer-logo .logo-text {
    font-size: 1.125rem;
}

@media (min-width: 640px) {
    .footer-logo .logo-text {
        font-size: 1.25rem;
    }
}

.footer-description {
    font-size: 0.75rem;
    line-height: 1.6;
    color: #a3a3a3;
}

@media (min-width: 640px) {
    .footer-description {
        font-size: 0.875rem;
    }
}

.footer-note {
    margin-top: 0.5rem;
    font-size: 0.625rem;
    color: #525252;
}

@media (min-width: 640px) {
    .footer-note {
        margin-top: 0.75rem;
        font-size: 0.75rem;
    }
}

.footer-title {
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

@media (min-width: 640px) {
    .footer-title {
        margin-bottom: 1rem;
        font-size: 0.875rem;
    }
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
}

@media (min-width: 640px) {
    .footer-links {
        gap: 0.75rem;
    }
}

.footer-links a {
    font-size: 0.75rem;
    color: #a3a3a3;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

@media (min-width: 640px) {
    .footer-links a {
        font-size: 0.875rem;
    }
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid #171717;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-bottom {
        padding-top: 2rem;
    }
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #525252;
}

@media (min-width: 640px) {
    .footer-bottom p {
        font-size: 0.875rem;
    }
}

