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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.6;
    color: #ffffff;
    background: radial-gradient(ellipse at center, #0f0f23 0%, #000000 70%);
    background-attachment: fixed;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(255, 69, 0, 0.03) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(0, 191, 255, 0.03) 50%, transparent 60%),
        radial-gradient(circle at 20% 50%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 
        0 2px 20px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 191, 255, 0.1);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #ff4500, #00bfff, #ff1493) 1;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.nav-logo h2 {
    background: linear-gradient(135deg, #ff4500 0%, #00bfff 50%, #ff1493 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    margin: 0;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
    animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    from {
        filter: drop-shadow(0 0 5px #00bfff);
    }
    to {
        filter: drop-shadow(0 0 20px #00bfff) drop-shadow(0 0 30px #ff4500);
    }
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.nav-item {
    margin-left: 1.5rem;
}

.nav-item:first-child {
    margin-left: 0;
}

.nav-link {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #667eea;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #e0e0e0;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.nav-social-link {
    color: #e0e0e0;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.nav-social-link:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 69, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255, 69, 0, 0.8) 49%, rgba(255, 69, 0, 0.8) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 191, 255, 0.6) 49%, rgba(0, 191, 255, 0.6) 51%, transparent 52%);
    background-size: 40px 40px, 60px 60px;
    animation: geometricMove 20s linear infinite;
    opacity: 0.1;
    z-index: 1;
}

@keyframes geometricMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.gradient-text {
    background: linear-gradient(135deg, #ff4500 0%, #00bfff 50%, #ff1493 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: neonFlicker 3s ease-in-out infinite alternate;
}

@keyframes neonFlicker {
    0%, 100% {
        filter: drop-shadow(0 0 5px #00bfff) drop-shadow(0 0 15px #ff4500);
    }
    50% {
        filter: drop-shadow(0 0 10px #ff1493) drop-shadow(0 0 20px #00bfff);
    }
}

.hero-description {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

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

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
}



.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(15, 15, 35, 0.8);
    backdrop-filter: blur(15px);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 
        0 0 20px rgba(0, 191, 255, 0.3),
        inset 0 0 20px rgba(255, 69, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 6s ease-in-out infinite, neonBorder 4s linear infinite;
    pointer-events: none;
}

@keyframes neonBorder {
    0% { border-image: linear-gradient(45deg, #ff4500, #00bfff) 1; }
    25% { border-image: linear-gradient(45deg, #00bfff, #ff1493) 1; }
    50% { border-image: linear-gradient(45deg, #ff1493, #ff4500) 1; }
    75% { border-image: linear-gradient(45deg, #ff4500, #00bfff) 1; }
    100% { border-image: linear-gradient(45deg, #00bfff, #ff1493) 1; }
}

.floating-card i {
    font-size: 2rem;
    background: linear-gradient(135deg, #ff4500 0%, #00bfff 50%, #ff1493 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.7));
}

.floating-card span {
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 20%;
    right: 10%;
    animation-delay: -2s;
}

.card-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: -4s;
}

.card-4 {
    bottom: 10%;
    right: 20%;
    animation-delay: -1s;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
}

@keyframes titleGlow {
    from {
        filter: drop-shadow(0 0 5px #00bfff);
    }
    to {
        filter: drop-shadow(0 0 15px #ff4500) drop-shadow(0 0 25px #ff1493);
    }
}

.section-header p {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

/* Community Section */
.community {
    padding: 6rem 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 69, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.community::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(0, 191, 255, 0.03) 100px,
            rgba(0, 191, 255, 0.03) 102px,
            transparent 104px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 98px,
            rgba(255, 69, 0, 0.03) 100px,
            rgba(255, 69, 0, 0.03) 102px,
            transparent 104px
        );
    pointer-events: none;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.community-card {
    background: rgba(15, 15, 35, 0.8);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, #ff4500, #00bfff, #ff1493) 1;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 0 30px rgba(0, 191, 255, 0.2),
        inset 0 0 30px rgba(255, 69, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.community-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 0 50px rgba(0, 191, 255, 0.4),
        0 0 80px rgba(255, 69, 0, 0.3),
        inset 0 0 30px rgba(255, 20, 147, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff4500 0%, #00bfff 50%, #ff1493 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 
        0 0 20px rgba(0, 191, 255, 0.5),
        inset 0 0 20px rgba(255, 69, 0, 0.3);
    animation: iconPulse 2s ease-in-out infinite alternate;
}

@keyframes iconPulse {
    from {
        box-shadow: 
            0 0 20px rgba(0, 191, 255, 0.5),
            inset 0 0 20px rgba(255, 69, 0, 0.3);
    }
    to {
        box-shadow: 
            0 0 30px rgba(255, 20, 147, 0.7),
            inset 0 0 30px rgba(0, 191, 255, 0.5);
    }
}

.card-icon i {
    font-size: 2rem;
    color: white;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.community-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.community-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Spaces Section */
.spaces {
    padding: 6rem 0;
    background: 
        radial-gradient(circle at 60% 20%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 69, 0, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.spaces::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            transparent 0deg, 
            rgba(255, 69, 0, 0.05) 60deg, 
            transparent 120deg, 
            rgba(0, 191, 255, 0.05) 180deg, 
            transparent 240deg, 
            rgba(255, 20, 147, 0.05) 300deg, 
            transparent 360deg);
    animation: rotate 30s linear infinite;
    pointer-events: none;
}

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

.spaces-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.next-space {
    background: rgba(15, 15, 35, 0.8);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, #ff4500, #00bfff, #ff1493) 1;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 0 30px rgba(0, 191, 255, 0.3),
        inset 0 0 30px rgba(255, 69, 0, 0.1);
    position: relative;
    z-index: 2;
}

.next-space h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.space-details {
    margin-bottom: 2rem;
}

.space-time,
.space-topic,
.space-host {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #b0b0b0;
}

.space-time i,
.space-topic i,
.space-host i {
    color: #667eea;
    width: 20px;
}

.recent-spaces h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.space-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.space-item {
    background: rgba(15, 15, 35, 0.8);
    border: 1px solid transparent;
    border-image: linear-gradient(90deg, #ff4500, #00bfff) 1;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    gap: 1rem;
}

.space-date {
    background: #667eea;
    color: white;
    padding: 0.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    min-width: 60px;
    height: fit-content;
}

.space-content h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.space-content p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Builders Section */
.builders {
    padding: 6rem 0;
    background: 
        radial-gradient(circle at 40% 60%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.builders::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 69, 0, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 75% 75%, rgba(0, 191, 255, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 25% 75%, rgba(255, 20, 147, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 75% 25%, rgba(255, 165, 0, 0.05) 0%, transparent 30%);
    animation: pulse 4s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes pulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.builders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.builder-card {
    background: rgba(15, 15, 35, 0.8);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, #ff4500, #00bfff, #ff1493) 1;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        0 0 25px rgba(0, 191, 255, 0.2),
        inset 0 0 25px rgba(255, 69, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    position: relative;
}

.builder-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 0 40px rgba(0, 191, 255, 0.4),
        0 0 60px rgba(255, 69, 0, 0.3),
        inset 0 0 30px rgba(255, 20, 147, 0.2);
}

.featured-host {
    border: 2px solid #667eea;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.host-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.builder-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #667eea;
}

.builder-avatar {
    margin-bottom: 1.5rem;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.avatar-placeholder i {
    font-size: 2rem;
    color: white;
}

.bitcoin-themed {
    background: linear-gradient(135deg, #f7931a 0%, #ffb84d 100%);
}

.bitcoin-themed i {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    font-family: monospace;
}

.beard-themed {
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
}

.builder-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.builder-title {
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px rgba(0, 191, 255, 0.5);
}

.builder-description {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
}

.builder-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.builders-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.builders-cta p {
    font-size: 1.1rem;
    color: #b0b0b0;
}

.builders-cta a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

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

.feature i {
    color: #a8e6cf;
    font-size: 1.2rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Join Section */
.join {
    padding: 6rem 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.join::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255, 69, 0, 0.03) 49%, rgba(255, 69, 0, 0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 191, 255, 0.03) 49%, rgba(0, 191, 255, 0.03) 51%, transparent 52%);
    background-size: 50px 50px, 70px 70px;
    animation: geometricMove 25s linear infinite;
    pointer-events: none;
}

.join-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.join-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
}

.join-content p {
    font-size: 1.1rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.join-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.join-option {
    background: rgba(15, 15, 35, 0.8);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, #ff4500, #00bfff, #ff1493) 1;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 0 30px rgba(0, 191, 255, 0.2),
        inset 0 0 30px rgba(255, 69, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.join-option:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 0 50px rgba(0, 191, 255, 0.4),
        0 0 80px rgba(255, 69, 0, 0.3),
        inset 0 0 30px rgba(255, 20, 147, 0.2);
}

.join-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff4500 0%, #00bfff 50%, #ff1493 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 
        0 0 20px rgba(0, 191, 255, 0.5),
        inset 0 0 20px rgba(255, 69, 0, 0.3);
    animation: iconPulse 2s ease-in-out infinite alternate;
}

.join-icon i {
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.join-option h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.join-option p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section h3 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #667eea;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-right {
        display: none;
    }
    
    .nav-right.active {
        display: block;
        position: fixed;
        left: 0;
        top: 70px;
        width: 100%;
        background: rgba(15, 15, 35, 0.95);
        backdrop-filter: blur(15px);
        z-index: 999;
        border-bottom: 2px solid transparent;
        border-image: linear-gradient(90deg, #ff4500, #00bfff, #ff1493) 1;
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.5),
            0 0 40px rgba(0, 191, 255, 0.1);
    }
    
    .nav-menu {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
        white-space: normal;
    }
    
        .nav-item {
        margin: 1rem 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem;
    }
    
    .nav-social {
        display: flex;
        justify-content: center;
        padding: 1rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .logo-img {
        height: 35px;
    }
    
    .nav-logo h2 {
        font-size: 1.2rem;
    }
    
    /* Hero Section Mobile */
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 2rem 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    

    
    .hero-visual {
        height: 250px;
        margin-top: 2rem;
    }
    
    .floating-card {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .floating-card i {
        font-size: 1.5rem;
    }
    
    /* Sections Mobile */
    .community,
    .spaces,
    .builders,
    .join,
    .about {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Community Grid Mobile */
    .community-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .community-card {
        padding: 2rem 1.5rem;
    }
    
    /* Spaces Mobile */
    .spaces-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .next-space {
        padding: 2rem 1.5rem;
    }
    
    .space-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .space-date {
        min-width: auto;
        width: fit-content;
        margin: 0 auto;
    }
    
    /* Builders Mobile */
    .builders-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .builder-card {
        padding: 2rem 1.5rem;
    }
    
    .host-badge {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .builder-photo {
        width: 100px;
        height: 100px;
    }
    
    /* About Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-visual {
        order: 1;
    }
    
    /* Join Mobile */
    .join-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .join-option {
        padding: 2rem 1.5rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    /* Navigation Mobile */
    .nav-container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .nav-logo h2 {
        font-size: 1rem;
    }
    
    /* Hero Mobile */
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 260px;
    }
    
    
    
    /* Sections Mobile */
    .community,
    .spaces,
    .builders,
    .join,
    .about {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    /* Cards Mobile */
    .community-card,
    .next-space,
    .join-option,
    .builder-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .community-card h3,
    .join-option h3 {
        font-size: 1.2rem;
    }
    
    .card-icon,
    .join-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i,
    .join-icon i {
        font-size: 1.5rem;
    }
    
    /* Builders Mobile */
    .builder-photo {
        width: 80px;
        height: 80px;
    }
    
    .host-badge {
        position: static;
        margin: 0 auto 1rem;
        width: fit-content;
        transform: translateY(-10px);
    }
    
    .featured-host {
        border-width: 1px;
    }
    
    /* Spaces Mobile */
    .space-item {
        padding: 1rem;
    }
    
    .space-date {
        font-size: 0.8rem;
        padding: 0.4rem;
    }
    
    .space-content h4 {
        font-size: 1rem;
    }
    
    .space-content p {
        font-size: 0.85rem;
    }
    
    /* About Mobile */
    .about {
        padding: 3rem 0;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-card {
        padding: 1.5rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    /* Touch Targets */
    .nav-link,
    .btn,
    .social-link,
    .join-option {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Hamburger Animation */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Mobile Specific Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Touch device optimizations */
    .btn:hover,
    .community-card:hover,
    .builder-card:hover,
    .join-option:hover {
        transform: none;
    }
    
    .btn:active,
    .community-card:active,
    .builder-card:active,
    .join-option:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-card {
        animation: none;
    }
}

/* Coming Soon Page Styles */

.coming-soon {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 69, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255, 69, 0, 0.8) 49%, rgba(255, 69, 0, 0.8) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 191, 255, 0.6) 49%, rgba(0, 191, 255, 0.6) 51%, transparent 52%);
    background-size: 40px 40px, 60px 60px;
    animation: geometricMove 20s linear infinite;
    opacity: 0.1;
    z-index: 1;
}

.coming-soon-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.token-logo {
    margin-bottom: 2rem;
}

.token-symbol {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4500 0%, #00bfff 50%, #ff1493 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 
        0 0 40px rgba(0, 191, 255, 0.5),
        inset 0 0 40px rgba(255, 69, 0, 0.3);
    animation: tokenSpin 10s linear infinite;
}

@keyframes tokenSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.token-symbol span {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
}

.coming-soon-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

.coming-soon-subtitle {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ff4500 0%, #00bfff 50%, #ff1493 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: neonFlicker 3s ease-in-out infinite alternate;
}

.coming-soon-description {
    font-size: 1.2rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.coming-soon-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.coming-soon-actions .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
}

.coming-soon-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-item {
    background: rgba(15, 15, 35, 0.8);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, #ff4500, #00bfff, #ff1493) 1;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 0 25px rgba(0, 191, 255, 0.2),
        inset 0 0 25px rgba(255, 69, 0, 0.1);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 0 35px rgba(0, 191, 255, 0.3),
        inset 0 0 35px rgba(255, 69, 0, 0.15);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4500 0%, #00bfff 50%, #ff1493 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.info-content h4 {
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.info-content p {
    color: #e0e0e0;
    font-weight: 600;
}

/* Mobile Responsiveness for Coming Soon Page */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 2.5rem;
    }
    
    .coming-soon-subtitle {
        font-size: 2rem;
    }
    
    .token-symbol {
        width: 150px;
        height: 150px;
    }
    
    .token-symbol span {
        font-size: 1.5rem;
    }
    
    .coming-soon-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .coming-soon-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .coming-soon-info {
        grid-template-columns: 1fr;
    }
} 