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

body {
    font-family: 'Space Mono', monospace;
    background: #0a0a0a;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 30% 40%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(255, 255, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(0, 100, 255, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    100% { opacity: 0.8; }
}

.header {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 100;
}

.logo-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.8);
}

.main-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 120px 20px 40px;
}

.hero-section {
    text-align: center;
    margin-bottom: 80px;
}

.clan-title h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700, #ff6b35, #ff0040);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
    animation: titleGlow 3s ease-in-out infinite alternate;
    margin-bottom: 20px;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5)); }
    100% { filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.9)); }
}

.subtitle {
    font-size: 1.2rem;
    color: #ccc;
    font-weight: 400;
    opacity: 0.8;
}

.navigation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    width: 100%;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.nav-item:hover {
    transform: translateY(-10px);
}

.nav-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    background: linear-gradient(45deg, #ff6b35, #ffd700, #ff0040) padding-box,
                linear-gradient(45deg, #ff6b35, #ffd700, #ff0040) border-box;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-circle.large {
    width: 160px;
    height: 160px;
    border-width: 4px;
}

.nav-circle:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4);
}

.nav-circle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b35, #ffd700, #ff0040);
    z-index: -1;
    animation: borderRotate 3s linear infinite;
}

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

.nav-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.nav-item:hover .nav-image {
    transform: scale(1.1);
}

.nav-label {
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item:hover .nav-label {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-item[data-item="website"] .nav-label {
    font-size: 1.2rem;
    color: #ffd700;
}

.info-sections {
    max-width: 1200px;
    width: 100%;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.info-section {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
}

.info-section:nth-child(even) {
    flex-direction: row-reverse;
}

.section-image {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    position: relative;
}

.lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
}

.lock-icon {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.soon-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd700;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.section-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.section-content {
    flex: 1;
}

.section-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
    opacity: 0.9;
}

.nav-item[data-item="nft"] .nav-label {
    font-size: 1.2rem;
    color: #ffd700;
}

.nftnomics-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.nftnomics-section {
    padding: 20px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.nftnomics-section h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.nftnomics-section ul {
    list-style: none;
    padding-left: 0;
}

.nftnomics-section li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    font-size: 1rem;
    line-height: 1.5;
    color: #ddd;
}

.nftnomics-section li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.nftnomics-section ol {
    margin: 10px 0 10px 20px;
    color: #ccc;
}

.nftnomics-section ol li {
    padding-left: 10px;
}

.nftnomics-section ol li:before {
    content: counter(list-item) ".";
    color: #ffd700;
    font-weight: bold;
    margin-right: 5px;
}

.nftnomics-section strong {
    color: #ffd700;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.2);
}

.philosophy {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.philosophy-values {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    margin: 15px 0;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .navigation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 20px;
    }
    
    .nav-circle {
        width: 100px;
        height: 100px;
    }
    
    .nav-circle.large {
        width: 120px;
        height: 120px;
    }
    
    .clan-title h1 {
        font-size: 2.5rem;
    }
    
    .logo-container {
        width: 60px;
        height: 60px;
    }
    
    .info-sections {
        margin-top: 60px;
        gap: 40px;
    }
    
    .info-section {
        flex-direction: column !important;
        text-align: center;
        padding: 30px 20px;
    }
    
    .section-image {
        width: 150px;
        height: 150px;
    }
    
    .section-content h2 {
        font-size: 2rem;
    }
    
    .section-content p {
        font-size: 1rem;
    }
    
    .nftnomics-section {
        padding: 15px;
    }
    
    .nftnomics-section h3 {
        font-size: 1.2rem;
    }
    
    .nftnomics-section li {
        font-size: 0.9rem;
        padding-left: 15px;
    }
    
    .philosophy-values {
        font-size: 1.1rem;
    }
    
    .lock-icon {
        font-size: 2rem;
    }
    
    .soon-text {
        font-size: 1rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .navigation-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .hero-section {
        margin-bottom: 60px;
    }
    
    .info-sections {
        margin-top: 40px;
        gap: 30px;
    }
    
    .info-section {
        padding: 25px 15px;
    }
    
    .section-image {
        width: 120px;
        height: 120px;
    }
    
    .section-content h2 {
        font-size: 1.8rem;
    }
    
    .lock-icon {
        font-size: 1.5rem;
    }
    
    .soon-text {
        font-size: 0.9rem;
    }
}