/* Variables and fonts now loaded from variables.css */

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

html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
}

/* Container */
.container {
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 120vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: visible;
    padding: 2rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    z-index: 1;
}

.gradient-spot {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: float 8s ease-in-out infinite;
}

.spot-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.spot-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #805AD5 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: 2s;
}

.spot-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #b00beb 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    width: 100%;
    padding: 0 var(--spacing-unit);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), #805AD5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(176, 11, 235, 0.3);
    animation: fadeInUp 1s ease-out 0.2s backwards;
    white-space: nowrap;
    overflow: visible;
}

.hero-text {
    font-size: 2.2rem;
    color: var(--text-color-light);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(176, 11, 235, 0.2);
    min-width: 180px;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(176, 11, 235, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, rgba(176, 11, 235, 0.1) 0%, rgba(128, 90, 213, 0.1) 100%);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(176, 11, 235, 0.3);
    transition: all 0.3s ease;
}

.feature:hover i {
    transform: scale(1.1);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(176, 11, 235, 0.15) 0%, rgba(128, 90, 213, 0.15) 100%);
}

.feature span {
    font-size: 1.1rem;
    color: var(--text-color-light);
    text-align: center;
    width: 100%;
    font-weight: 500;
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color-light);
    text-decoration: none;
    animation: fadeInUp 1s ease-out 0.8s backwards;
    transition: color 0.3s ease;
}

.scroll-down:hover {
    color: var(--primary-color);
}

.scroll-down i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

/* Vision Section */
.vision-section {
    background-color: rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: visible;
    padding: 4rem 0;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(176, 11, 235, 0.15) 0%, 
        rgba(176, 11, 235, 0.1) 30%, 
        rgba(176, 11, 235, 0.05) 60%, 
        rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    animation: gradientShift 15s ease infinite alternate;
}

.vision-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(176, 11, 235, 0.05) 0%, transparent 5%),
        radial-gradient(circle at 30% 40%, rgba(128, 90, 213, 0.05) 0%, transparent 5%),
        radial-gradient(circle at 50% 60%, rgba(176, 11, 235, 0.05) 0%, transparent 5%),
        radial-gradient(circle at 70% 80%, rgba(128, 90, 213, 0.05) 0%, transparent 5%),
        radial-gradient(circle at 90% 10%, rgba(176, 11, 235, 0.05) 0%, transparent 5%);
    background-size: 200% 200%;
    background-position: top left;
    z-index: 1;
    animation: floatingDots 20s linear infinite;
}

.vision-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.vision-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--primary-color), #805AD5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vision-section p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-color-light);
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.vision-section .highlight {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.vision-section .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.vision-section .highlight:hover::after {
    transform: scaleX(1);
}

/* Token Grid Section */
.token-grid-section {
    padding: 6rem 0;
    background-color: var(--background-color);
}

.token-grid-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--primary-color), #805AD5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.token-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.token-card {
    background-color: var(--secondary-color);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-speed);
}

.token-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(176, 11, 235, 0.2);
}

.token-card i.fa-3x {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.token-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.token-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    padding: 1rem;
}

.token-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.token-card p {
    color: var(--text-color-light);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

/* Future Features Section */
.future-features-section {
    background-color: var(--background-color);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.future-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.95) 20%,
        rgba(176, 11, 235, 0.1) 60%,
        rgba(128, 90, 213, 0.1) 100%);
    z-index: 1;
}

.future-features-section .container {
    position: relative;
    z-index: 2;
}

.future-features-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--primary-color), #805AD5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: var(--text-color-light);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all var(--transition-speed);
    backdrop-filter: blur(10px);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--text-color);
}

.feature-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: center;
}

.feature-card p {
    color: var(--text-color-light);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background-color: var(--background-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.95) 0%,
        rgba(176, 11, 235, 0.15) 30%,
        rgba(176, 11, 235, 0.1) 60%,
        rgba(128, 90, 213, 0.1) 100%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--primary-color), #805AD5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-color-light);
    margin-bottom: 2rem;
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all var(--transition-speed);
}

.cta-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(176, 11, 235, 0.3);
}

/* Animations */
@keyframes gradientShift {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.5;
    }
}

@keyframes floatingDots {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .token-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 111vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
   

    }

    .hero-text {
        font-size: 1.2rem;
    }

    .token-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto);
    }

    .token-card {
        padding: 1.5rem;
    }

    .token-image {
        width: 100px;
        height: 100px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .vision-section h2,
    .token-grid-section h2,
    .future-features-section h2,
    .cta-section h2 {
        font-size: 2.5rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .feature {
        width: 100%;
        max-width: 300px;
    }

    .feature i {
        font-size: 1.75rem;
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
        white-space: normal;
        margin-top: 150px;
    }

    .vision-section,
    .token-grid-section,
    .future-features-section,
    .cta-section {
        padding: 4rem 0;
    }

    .vision-section h2,
    .token-grid-section h2,
    .future-features-section h2,
    .cta-section h2 {
        font-size: 2rem;
    }
} 