/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background: #f7f5f2;
}

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.1);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e1919;
    letter-spacing: -0.02em;
}

.logo-highlight {
    color: #2563eb;
}

.nav {
    display: none;
    gap: 0.25rem;
}

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

.nav-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #736c64;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    color: #1e1919;
    background: #f7f5f2;
}

.discord-btn {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: #2563eb;
    color: white;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .discord-btn {
        display: flex;
    }
}

.discord-btn:hover {
    background: #1d4ed8;
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f7f5f2;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: #f7f5f2;
}

.hero-logo-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 384px;
    height: 384px;
    opacity: 0.05;
}

.hero-logo-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    top: 5rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    background: #dc2626;
    opacity: 0.2;
}

.float-2 {
    top: 10rem;
    right: 5rem;
    width: 8rem;
    height: 8rem;
    background: #2563eb;
    opacity: 0.15;
    animation-delay: -2s;
}

.float-3 {
    bottom: 10rem;
    left: 5rem;
    width: 6rem;
    height: 6rem;
    background: #ef4444;
    opacity: 0.2;
    animation-delay: -4s;
}

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

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #dc2626;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #16a34a;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e1919;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
}

.hero-title-highlight {
    color: #2563eb;
}

.hero-description {
    font-size: 1.125rem;
    color: #736c64;
    max-width: 48rem;
    margin: 0 auto 3rem;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 500;
    font-size: 1.125rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #61525a;
    color: white;
}

.btn-primary:hover {
    background: #4a3f45;
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: white;
    color: #61525a;
    border: 2px solid rgba(97, 82, 90, 0.1);
}

.btn-secondary:hover {
    background: #f7f5f2;
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 2.25rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: #736c64;
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

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

.scroll-indicator-inner {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid #dc2626;
    border-radius: 9999px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}

.scroll-dot {
    width: 0.375rem;
    height: 0.375rem;
    background: #dc2626;
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* About Section */
.about {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    background: white;
    overflow: hidden;
}

.about-container {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

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

.about-image-wrapper {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(29, 78, 216, 0.7), transparent);
}

.about-deco {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}

.about-deco-1 {
    top: -1rem;
    right: -1rem;
    width: 6rem;
    height: 6rem;
    background: #dc2626;
    opacity: 0.2;
}

.about-deco-2 {
    bottom: -1rem;
    left: -1rem;
    width: 8rem;
    height: 8rem;
    background: #2563eb;
    opacity: 0.2;
}

.about-content {
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f7f5f2;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #dc2626;
    margin-bottom: 1.5rem;
}

.badge-icon {
    width: 1rem;
    height: 1rem;
    color: #2563eb;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1e1919;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.title-highlight {
    color: #2563eb;
}

.section-description {
    font-size: 1.125rem;
    color: #736c64;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.features-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.feature-card {
    padding: 1.25rem;
    background: #f7f5f2;
    border-radius: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    background: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e1919;
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.875rem;
    color: #736c64;
}

/* Countries Section */
.countries {
    position: relative;
    padding: 5rem 0;
    background: #f7f5f2;
}

.countries-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.countries-filters {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .countries-filters {
        flex-direction: row;
    }
}

.search-box {
    position: relative;
    width: 100%;
}

@media (min-width: 640px) {
    .search-box {
        width: 20rem;
    }
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    color: #736c64;
}

.search-input {
    width: 100%;
    padding: 0.625rem 1rem 0.625rem 2.5rem;
    font-size: 0.875rem;
    background: white;
    border-radius: 0.5rem;
    border: 2px solid transparent;
    outline: none;
    transition: all 0.3s ease;
    color: #1e1919;
}

.search-input:focus {
    border-color: #2563eb;
}

.platform-filters {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    background: white;
    color: #736c64;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.8);
}

.filter-btn.active {
    background: #dc2626;
    color: white;
}

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

@media (min-width: 640px) {
    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .countries-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .countries-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.country-card {
    position: relative;
    background: white;
    border-radius: 1rem;
    padding: 1.25rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.country-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.5rem);
}

.country-platform-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.375rem;
    border-radius: 0.5rem;
    color: white;
    opacity: 0.9;
}

.platform-icon {
    width: 1rem;
    height: 1rem;
}

.country-flag {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.country-card:hover .country-flag {
    transform: scale(1.1);
}

.country-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1e1919;
    text-align: center;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.country-handle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.country-followers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #736c64;
}

.follower-dot {
    width: 0.375rem;
    height: 0.375rem;
    background: #16a34a;
    border-radius: 50%;
}

.country-card-border {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    border: 2px solid #2563eb;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.country-card:hover .country-card-border {
    opacity: 1;
}

.show-more-container {
    text-align: center;
}

.search-info {
    text-align: center;
    color: #736c64;
    font-size: 0.875rem;
}

.no-results {
    text-align: center;
    padding: 5rem 0;
}

.no-results-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.no-results-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e1919;
    margin-bottom: 0.5rem;
}

.no-results-text {
    color: #736c64;
}

/* Join Network Section */
.join-network {
    position: relative;
    padding: 5rem 0;
    background: white;
    overflow: hidden;
}

.join-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.join-bg-1 {
    top: 5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    background: #dc2626;
    opacity: 0.1;
}

.join-bg-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 10rem;
    height: 10rem;
    background: #2563eb;
    opacity: 0.1;
}

.join-container {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.join-info {
    font-size: 0.875rem;
    color: #736c64;
    margin-top: 1.5rem;
}

/* Community Section */
.community {
    position: relative;
    padding: 5rem 0;
    background: #f7f5f2;
}

.community-container {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* Footer */
.footer {
    background: #1e1919;
    color: white;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.footer-content {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand {
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-logo .logo-text {
    color: white;
    font-size: 1.5rem;
}

.footer-logo .logo-highlight {
    color: #2563eb;
}

.footer-description {
    color: #bbb5ae;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #dc2626;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-section-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: #bbb5ae;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.footer-link:hover {
    color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid rgba(220, 38, 38, 0.3);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
    }
}

.footer-copyright {
    color: #bbb5ae;
    font-size: 0.875rem;
}

.footer-made-with {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #bbb5ae;
    font-size: 0.875rem;
}

.heart-icon {
    width: 1rem;
    height: 1rem;
    color: #fa551e;
}

.footer-accent {
    height: 0.25rem;
    background: linear-gradient(to right, #fad24b, #3dd3ee, #2563eb, #ff8c19, #b4dc19);
}