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

body {
    font-family: 'JulyGo', 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #1a1a1a;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 48, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.2) 0%, transparent 50%);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo h2 {
    color: #ff6b35;
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.nav-logo h2:hover {
    transform: scale(1.05);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 107, 53, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff6b35;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #ff6b35;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.nav-link:hover::after {
    width: 100%;
}



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

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.2), rgba(0, 0, 0, 0.9));
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-title:hover {
    transform: scale(1.02);
    filter: brightness(1.2);
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 107, 53, 0.5), 3px 3px 6px rgba(0, 0, 0, 0.8);
    }
    to {
        text-shadow: 0 0 30px rgba(255, 107, 53, 0.8), 0 0 40px rgba(255, 107, 53, 0.6), 3px 3px 6px rgba(0, 0, 0, 0.8);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: 2px solid rgba(255, 107, 53, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-primary.magic-eden {
    background: linear-gradient(45deg, #8b4513, #a0522d);
}

.btn-primary.magic-eden:hover {
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.4);
}

.btn.disabled,
.checker-btn.disabled,
.community-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.btn.disabled:hover,
.checker-btn.disabled:hover,
.community-link.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Checker Section */
.checker-section {
    margin-top: 2rem;
    text-align: center;
}

.checker-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.3rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 107, 53, 0.5);
    text-decoration: none;
}

.checker-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}



/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Info Section */
.info-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    position: relative;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 69, 19, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.05) 50%, transparent 70%);
    border-radius: 15px;
    pointer-events: none;
}

.info-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #ff6b35;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.info-card:hover .collection-img {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.info-card:hover .info-icon {
    transform: scale(1.2) rotate(5deg);
    color: #f7931e;
}

.info-icon {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.info-image {
    margin-bottom: 1rem;
    text-align: center;
}

.collection-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.collection-img:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
    border-color: #ff6b35;
    filter: brightness(1.1) contrast(1.1);
}

.info-card h3 {
    font-size: 2rem;
        font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.info-card p {
    color: #cccccc;
    line-height: 1.6;
}

.highlight {
    color: #ff6b35 !important;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Utility Section */
.utility-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
}

.utility-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 75% 25%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 25% 75%, rgba(139, 69, 19, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.utility-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
}

.utility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.05) 50%, transparent 70%);
    border-radius: 15px;
    pointer-events: none;
}

.utility-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #ff6b35;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.utility-card:hover .utility-icon {
    transform: scale(1.2) rotate(-5deg);
    color: #f7931e;
}

.utility-icon {
    font-size: 4rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.utility-card h3 {
    font-size: 2.5rem;
        font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.utility-card p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Roadmap Section */
.roadmap-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    position: relative;
}

.roadmap-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.roadmap-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #ff6b35, #f7931e);
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.roadmap-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.roadmap-item:nth-child(odd) {
    flex-direction: row;
}

.roadmap-item:nth-child(even) {
    flex-direction: row-reverse;
}

.roadmap-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
        font-weight: 700;
    font-weight: 700;
    color: #ffffff;
    z-index: 2;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 107, 53, 0.5);
}

.roadmap-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin: 0 2rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
    flex: 1;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
}

.roadmap-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.05) 50%, transparent 70%);
    border-radius: 15px;
    pointer-events: none;
}

.roadmap-content:hover {
    border-color: #ff6b35;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.roadmap-item:hover .roadmap-number {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.roadmap-content h3 {
    font-size: 2rem;
        font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ff6b35;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.roadmap-content p {
    color: #cccccc;
}

/* Community Section */
.community-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    text-align: center;
    position: relative;
}

.community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.community-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.community-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.community-link.twitter {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: 2px solid rgba(255, 107, 53, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.community-link.twitter:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
}

.community-link.discord {
    background: linear-gradient(45deg, #ff5722, #ff9800) !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 87, 34, 0.8) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.community-link.discord:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 30px rgba(255, 87, 34, 0.6) !important;
}

.community-link i {
    font-size: 2rem;
        font-weight: 700;
}

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer p {
    color: #666666;
}

/* Responsive Design */
@media (max-width: 768px) {

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        font-weight: 500;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .utility-content {
        grid-template-columns: 1fr;
    }

    .roadmap-timeline::before {
        left: 30px;
    }

    .roadmap-item {
        flex-direction: row !important;
    }

    .roadmap-content {
        margin-left: 4rem;
        margin-right: 0;
    }

    .community-links {
        flex-direction: column;
        align-items: center;
    }

    .community-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        font-weight: 700;
    }

    .section-title {
        font-size: 2rem;
        font-weight: 700;
    }

    .info-card,
    .utility-card {
        padding: 1.5rem;
    }

    .roadmap-content {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-card,
.utility-card,
.roadmap-item {
    animation: fadeInUp 0.6s ease-out;
}
