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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Orbitron', monospace;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    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;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.beebee-logo {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #f5a623;
    box-shadow: 0 0 15px rgba(245, 166, 35, 0.3);
}

.logo-fallback {
    font-size: 30px;
    line-height: 1;
}

.nav-logo h2 {
    color: #f5a623;
    font-weight: 900;
    font-size: 24px;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

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

.nav-link:hover {
    color: #f5a623;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f5a623;
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(245, 166, 35, 0.1) 0%, rgba(0, 0, 0, 0.8) 70%);
}

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

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

.hero-title {
    margin-bottom: 30px;
}

.title-main {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    color: #f5a623;
    text-shadow: 0 0 30px rgba(245, 166, 35, 0.5);
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.title-sub {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #f5a623, #ff8c00);
    color: #000000;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #f5a623;
    border-color: #f5a623;
}

.btn-secondary:hover {
    background-color: #f5a623;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.4);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #f5a623;
    text-shadow: 0 0 20px rgba(245, 166, 35, 0.5);
}

.stat-label {
    font-size: 1rem;
    color: #cccccc;
    margin-top: 5px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, #000000 0%, #111111 100%);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    color: #f5a623;
    margin-bottom: 60px;
    text-shadow: 0 0 20px rgba(245, 166, 35, 0.3);
}

.about-description {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #cccccc;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(245, 166, 35, 0.05);
    border: 1px solid rgba(245, 166, 35, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(245, 166, 35, 0.1);
    border-color: rgba(245, 166, 35, 0.4);
}

.feature-icon {
    font-size: 2rem;
    color: #f5a623;
    margin-top: 5px;
}

.feature-content h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-content p {
    color: #cccccc;
    font-size: 1rem;
}

/* Tokenomics Section */
.tokenomics {
    padding: 100px 0;
    background: #000000;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tokenomics-card {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    border: 1px solid rgba(245, 166, 35, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tokenomics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.1), transparent);
    transition: left 0.5s ease;
}

.tokenomics-card:hover::before {
    left: 100%;
}

.tokenomics-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(245, 166, 35, 0.2);
    border-color: rgba(245, 166, 35, 0.5);
}

.card-icon {
    font-size: 3rem;
    color: #f5a623;
    margin-bottom: 20px;
}

.tokenomics-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #f5a623;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(245, 166, 35, 0.5);
}

.tokenomics-card p {
    color: #cccccc;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(245, 166, 35, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: #f5a623;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #cccccc;
    font-size: 1rem;
}

.footer-links h4,
.footer-social h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f5a623;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.3);
    border-radius: 50%;
    color: #f5a623;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #f5a623;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 166, 35, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(245, 166, 35, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-copyright p,
.footer-disclaimer p {
    color: #888888;
    font-size: 0.9rem;
}

.footer-disclaimer {
    margin-top: 10px;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.crypto-symbol {
    position: absolute;
    font-size: 2rem;
    color: rgba(245, 166, 35, 0.1);
    animation: float 20s infinite linear;
    pointer-events: none;
}

.crypto-symbol:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.crypto-symbol:nth-child(2) {
    left: 20%;
    animation-delay: 5s;
    animation-duration: 30s;
}

.crypto-symbol:nth-child(3) {
    left: 35%;
    animation-delay: 10s;
    animation-duration: 20s;
}

.crypto-symbol:nth-child(4) {
    left: 50%;
    animation-delay: 15s;
    animation-duration: 35s;
}

.crypto-symbol:nth-child(5) {
    left: 70%;
    animation-delay: 20s;
    animation-duration: 28s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-item,
.tokenomics-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.feature-item.visible,
.tokenomics-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Navigation Styles */
@media screen and (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

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

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

    .nav-link {
        padding: 15px;
        display: block;
        border-bottom: 1px solid rgba(245, 166, 35, 0.1);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .title-main {
        font-size: 2.5rem;
    }

    .title-sub {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 40px;
    }

    .stat-number {
        font-size: 2rem;
    }

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

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

    .btn {
        width: 200px;
        justify-content: center;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tokenomics-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
}

@media screen and (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .title-main {
        font-size: 2rem;
    }

    .title-sub {
        font-size: 1rem;
    }

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

    .beebee-logo {
        width: 35px;
        height: 35px;
    }

    .nav-logo h2 {
        font-size: 20px;
    }
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States for Keyboard Navigation */
.nav-link:focus,
.btn:focus,
.social-link:focus {
    outline: 2px solid #f5a623;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .feature-item,
    .tokenomics-card {
        border-width: 2px;
    }
}