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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: #000;
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Background */
.bg-gradient {
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom right, #000 0%, #111 50%, #000 100%);
    z-index: 1;
}

/* Moving Orbs */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 2;
}

.orb-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, #81d8d0 0%, transparent 70%);
    opacity: 0.2;
    left: 20%;
    top: 10%;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #81d8d0 0%, transparent 70%);
    opacity: 0.15;
    right: 10%;
    bottom: 20%;
}

/* Spotlight */
.spotlight {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(129, 216, 208, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 3;
    filter: blur(50px);
    transform: translate(-50%, -50%);
    transition: left 0.1s ease-out, top 0.1s ease-out;
}

/* Hexagon Pattern */
.hexagon-pattern {
    position: fixed;
    inset: 0;
    opacity: 0.03;
    pointer-events: none;
    z-index: 2;
}

/* Floating Particles */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: #81d8d0;
}

/* Jewelry Container */
.jewelry-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.jewelry-item {
    position: absolute;
    animation: floatJewelry linear infinite;
}

@keyframes floatJewelry {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(var(--x1), var(--y1)) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(0, 0) rotate(180deg) scale(1);
    }
    75% {
        transform: translate(var(--x2), var(--y2)) rotate(270deg) scale(1.1);
    }
    100% {
        transform: translate(0, 0) rotate(360deg) scale(1);
    }
}

/* Main Wrapper */
.main-wrapper {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation */
.nav {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #81d8d0;
    border: none;
    border-radius: 9999px;
    color: #000;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: #6ec9c1;
    transform: scale(1.05);
}

.btn-nav:active {
    transform: scale(0.95);
}

.btn-nav .icon {
    width: 16px;
    height: 16px;
}

/* Hero Section */
.hero-section {
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 3rem 1.5rem;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

/* Left Content */
.left-content {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(129, 216, 208, 0.1);
    border: 1px solid rgba(129, 216, 208, 0.3);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge svg {
    width: 16px;
    height: 16px;
    color: #81d8d0;
}

.badge span {
    color: #81d8d0;
    font-size: 0.875rem;
}

.main-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.gradient-text {
    display: block;
    background: linear-gradient(to right, #81d8d0, #fff, #81d8d0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
    background-size: 200% auto;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.subtitle {
    font-size: 1.25rem;
    color: #9ca3af;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-card {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out both;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-card svg {
    width: 24px;
    height: 24px;
    color: #81d8d0;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

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

.feature-title {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.feature-desc {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Stats */
.stats {
    display: flex;
    gap: 2rem;
}

.stat {
    animation: fadeIn 0.6s ease-out both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.stat-value {
    font-size: 2rem;
    color: #81d8d0;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Right Content - NFT Card */
.right-content {
    animation: scaleIn 0.8s ease-out 0.3s both;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.nft-card {
    position: relative;
}

.card-glow {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(to right, #81d8d0, #5bb9b1);
    border-radius: 1.5rem;
    filter: blur(2rem);
    opacity: 0.3;
    z-index: -1;
}

.card-content {
    position: relative;
    background: linear-gradient(to bottom right, #111, #000);
    border: 1px solid rgba(129, 216, 208, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: transform 0.3s ease;
}

.nft-video-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    overflow: hidden;
}

.nft-video {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    pointer-events: none;
}

.nft-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: #81d8d0;
    color: #000;
    font-size: 0.875rem;
    border-radius: 9999px;
    font-weight: 600;
}

/* Claim Form */
.claim-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-label {
    font-size: 0.875rem;
    color: #9ca3af;
}

.input-wrapper {
    position: relative;
}

.wallet-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(129, 216, 208, 0.2);
    border-radius: 0.75rem;
    color: white;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.wallet-input::placeholder {
    color: #4b5563;
}

.wallet-input:focus {
    outline: none;
    border-color: #81d8d0;
}

.copy-btn {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #81d8d0;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.3s ease;
}

.copy-btn:hover {
    color: white;
}

.claim-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #81d8d0, #5bb9b1);
    border: none;
    border-radius: 0.75rem;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.claim-btn:hover:not(:disabled) {
    background: linear-gradient(to right, #6ec9c1, #4aa8a0);
    transform: scale(1.02);
}

.claim-btn:active:not(:disabled) {
    transform: scale(0.98);
}

.claim-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.claim-btn .arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.claim-btn:hover:not(:disabled) .arrow-icon {
    transform: translateX(4px);
}

/* Footer */
.footer {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 2rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    animation: fadeIn 0.6s ease-out 1s both;
}

.footer p {
    font-size: 0.875rem;
    color: #4b5563;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .main-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .nav {
        padding: 1.5rem 1rem;
    }
    
    .nav-logo svg {
        width: 150px;
        height: 17px;
    }
}
