/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff914d;
    --primary-dark: #e67a30;
    --secondary-color: #4f46e5;
    --accent-color: #0ea5e9;
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-light: #1e293b;
    --card-bg: #1e293b;
    --text-light: #ffffff;
    --text-muted: #94a3b8;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --glow: 0 0 10px rgba(255, 145, 77, 0.5), 0 0 20px rgba(255, 145, 77, 0.3);
    --border-radius: 12px;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow-x: hidden;
    position: relative;
}

/* Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Utility Classes */
.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    padding-top: 10px;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(2, 6, 23, 0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 8px rgba(255, 145, 77, 0.5));
}

.logo span {
    font-weight: bold;
    font-size: 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), #ff6b00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 80%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--text-light);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 5%;
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-light));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    min-height: 90vh;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255,145,77,0.1) 0%, rgba(30,30,30,0) 70%);
    z-index: 0;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 650px;
    text-align: left;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(14, 165, 233, 0.3));
    animation: float-slow 6s ease-in-out infinite;
}

@keyframes float-slow {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.hero h2.subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.counter-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.counter-item {
    flex: 1;
    min-width: 120px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var (--transition);
}

.counter-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.counter {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.counter-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.btn-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    min-width: 160px;
}

.primary-btn {
    background: linear-gradient(45deg, var(--primary-color), #ff6b00);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(255, 145, 77, 0.3);
    border: none;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 145, 77, 0.4);
}

.secondary-btn {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
    border: none;
}

.secondary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(79, 70, 229, 0.4);
}

.outline-btn {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.outline-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

/* Features Section */
.features {
    padding: 100px 5%;
    background-color: var(--bg-darker);
    position: relative;
}

.features::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(14,165,233,0.1) 0%, rgba(30,30,30,0) 70%);
    z-index: 0;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    z-index: 2;
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 145, 77, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: rgba(255, 145, 77, 0.2);
    transform: scale(1.1);
    box-shadow: var(--glow);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* How to Buy Section */
.how-to-buy {
    padding: 100px 5%;
    background-color: var(--bg-dark);
    position: relative;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.step-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    position: relative;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 145, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    background-color: rgba(255, 145, 77, 0.2);
    box-shadow: var(--glow);
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.step-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.buy-action {
    text-align: center;
    margin-top: 30px;
}

/* Info Section */
.info {
    background-color: var(--bg-dark);
    margin: 60px auto;
    padding: 50px 30px;
    max-width: 800px;
    width: 90%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transform: translateY(0);
    transition: transform 0.3s ease;
    background-image: linear-gradient(to bottom right, rgba(255, 145, 77, 0.05), rgba(14, 165, 233, 0.05));
}

.info:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.info-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 35px;
}

.info-logo {
    width: 80px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 145, 77, 0.5));
}

.info h2 {
    color: var(--text-light);
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.info h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.info-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.info-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.info-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.info-item strong {
    color: var(--primary-color);
    margin-right: 10px;
    min-width: 120px;
    text-align: right;
    font-weight: 600;
}

.info-item span {
    color: var(--text-muted);
    flex: 1;
}

.copyable {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.copy-icon {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.copyable:hover .copy-icon {
    color: var(--primary-color);
    animation: bounce 0.5s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.dyor-badge {
    display: block;
    margin-top: 30px;
    text-align: center;
    transition: var(--transition);
}

.dyor-badge:hover {
    transform: scale(1.05);
}

/* Address display */
.truncated-address {
    font-family: monospace;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.address-text {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow: hidden;
}

/* FAQ Section */
.faq {
    padding: 100px 5%;
    background-color: var(--bg-dark);
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-light);
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Community Banner */
.community-banner {
    background: linear-gradient(to right, var(--bg-darker), var(--bg-dark));
    padding: 60px 5%;
    text-align: center;
    border-radius: var(--border-radius);
    margin: 0 5% 80px;
    position: relative;
    overflow: hidden;
}

.community-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 145, 77, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    z-index: 0;
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.community-banner h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.community-banner p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.community-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.community-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    min-width: 150px;
}

.community-btn.telegram {
    background-color: #0088cc;
    color: white;
}

.community-btn.twitter {
    background-color: #1da1f2;
    color: white;
}

.community-btn.discord {
    background-color: #5865f2;
    color: white;
}

.community-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Divider */
.FOXs-divider {
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--accent-color), transparent);
    margin: 20px 0;
}

/* Footer */
footer {
    margin-top: auto;
    background-color: var(--bg-darker);
    padding: 50px 5% 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 0 30px;
}

.footer-logo img {
    width: 80px;
    filter: drop-shadow(0 0 8px rgba(255, 145, 77, 0.5));
    transition: var(--transition);
}

.footer-logo:hover img {
    transform: scale(1.1);
}

.footer-logo h3 {
    font-size: 1.8rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.footer-column h4 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.1);
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Notification */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translateX(200%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.notification.show {
    transform: translateX(0);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background-color: var(--primary-dark);
}

/* Animation Classes */
.animate-in {
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 5%;
    }

    .hero-content {
        text-align: center;
        max-width: 800px;
        margin-bottom: 40px;
    }

    .counter-container {
        justify-content: center;
    }

    .btn-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-darker);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .hamburger {
        display: block;
    }

    .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);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .btn-container {
        flex-direction: column;
        align-items: center;
    }

    .info-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .info-item strong {
        text-align: left;
        margin-bottom: 5px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        order: -1;
        margin: 0 0 30px 0;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .info {
        padding: 30px 20px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .community-banner {
        padding: 40px 20px;
    }

    .community-banner h2 {
        font-size: 1.8rem;
    }

    .back-to-top {
        right: 15px;
        bottom: 15px;
        width: 40px;
        height: 40px;
    }
}
