/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: url('images/backgrounds/hbuffbackground.jpg') center calc(0% + 50px)/cover no-repeat fixed,
                linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding-top: 50px; /* Add padding for ticker */
    margin: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 50px; /* Position below ticker */
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-icon {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(78, 205, 196, 0.5));
    animation: iconGlow 3s ease-in-out infinite alternate;
}

@keyframes iconGlow {
    0% { filter: drop-shadow(0 0 5px rgba(255, 107, 107, 0.5)); }
    100% { filter: drop-shadow(0 0 15px rgba(78, 205, 196, 0.8)); }
}

.nav-logo h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #ffd700, #ff4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 5px rgba(255, 107, 107, 0.5)); }
    100% { filter: drop-shadow(0 0 20px rgba(78, 205, 196, 0.8)); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #4ecdc4;
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Ticker Section */
.ticker-container {
    background: linear-gradient(135deg, #1a4a3a, #2d6b5d);
    color: white;
    padding: 12px 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    white-space: nowrap;
    font-weight: 700;
    font-size: 1rem;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ticker-content {
    display: block;
    animation: scroll-ticker 20s linear infinite;
    white-space: nowrap;
}

.ticker-text {
    display: inline-block;
    padding-right: 100px;
}

.ca-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 800;
    background: rgba(255, 215, 0, 0.1);
    padding: 2px 8px;
    border-radius: 5px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.ca-link:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@keyframes scroll-ticker {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 150px 0 60px; /* Extra padding for ticker + navbar */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(20, 20, 20, 0.7) 50%, rgba(40, 40, 40, 0.6) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: 4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gradient-text {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #ffd700, #ff4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 3s ease-in-out infinite;
}

@keyframes textShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.flex-emoji {
    font-size: 3rem;
    animation: flex 2s ease-in-out infinite;
}

@keyframes flex {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(10deg); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-3px);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
    color: white;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.buff-character {
    text-align: center;
    animation: bounce 3s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.character-image {
    width: 400px;
    height: 400px;
    object-fit: contain;
    margin-bottom: 1rem;
    animation: flexMuscle 2s ease-in-out infinite;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
}

@keyframes flexMuscle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.buff-text {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-emoji {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.3;
}

.floating-emoji:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-emoji:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-emoji:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.floating-emoji:nth-child(4) {
    top: 40%;
    right: 20%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-5deg); }
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

section:not(.hero) {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    margin: 0;
    border-radius: 0;
}

.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: white;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.title-emoji {
    font-size: 2.5rem;
    animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

/* Bot Section */
.bot-section {
    background: rgba(0, 0, 0, 0.8);
    color: white;
}

.bot-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.bot-demo {
    background: rgba(255, 255, 255, 0.1);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.bot-demo h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.demo-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 2rem;
}

.demo-before, .demo-after {
    text-align: center;
}

.demo-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    font-size: 3rem;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.demo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.demo-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #4ecdc4;
}

.demo-arrow i {
    font-size: 3rem;
    animation: arrow-pulse 2s infinite;
}

@keyframes arrow-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.bot-cta {
    text-align: center;
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

.bot-cta-text {
    margin-top: 1rem;
    opacity: 0.9;
}

/* Products Section */
.products-section {
    background: rgba(0, 0, 0, 0.8);
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.product-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-features {
    list-style: none;
    margin-top: 1rem;
}

.product-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.products-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Tokenomics Section */
.tokenomics-section {
    background: rgba(0, 0, 0, 0.8);
    color: white;
}

.launch-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.launch-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 107, 107, 0.3);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.launch-card:hover {
    transform: translateY(-10px);
    border-color: rgba(78, 205, 196, 0.6);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.launch-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.launch-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.launch-card strong {
    color: #4ecdc4;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.tokenomics-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.tokenomics-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 107, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.big-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ff6b6b;
    margin: 1rem 0;
    font-family: 'Fredoka One', cursive;
    text-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
}

.tokenomics-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tokenomics-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Roadmap Section */
.roadmap-section {
    background: rgba(0, 0, 0, 0.8);
    color: white;
}

.simple-roadmap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.roadmap-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0.7;
    position: relative;
}

.phase-label {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #4ecdc4;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid rgba(78, 205, 196, 0.3);
}

.roadmap-card.completed {
    border-color: rgba(78, 205, 196, 0.5);
    opacity: 1;
}

.roadmap-card.completed .phase-label {
    background: rgba(78, 205, 196, 0.2);
    color: #4ecdc4;
    border-color: rgba(78, 205, 196, 0.5);
}

.roadmap-card.active {
    border-color: rgba(255, 107, 107, 0.5);
    opacity: 1;
    animation: pulse 2s infinite;
}

.roadmap-card.active .phase-label {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border-color: rgba(255, 107, 107, 0.5);
    animation: pulse 2s infinite;
}

.roadmap-card:hover {
    transform: translateY(-10px);
    opacity: 1;
}

.roadmap-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.roadmap-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
}

.roadmap-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-icon {
    height: 30px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(78, 205, 196, 0.3));
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: #4ecdc4;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4ecdc4;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #4ecdc4;
    transform: translateY(-3px);
}

.social-links a.coming-soon {
    opacity: 0.5;
    cursor: not-allowed;
}

.social-links a.coming-soon:hover {
    background: #666;
    transform: none;
}

.footer-section a.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
    font-style: italic;
}

.footer-section a.coming-soon:hover {
    color: #999;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

.disclaimer {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.7;
}

.btn-small {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ticker-content {
        animation: scroll-ticker 15s linear infinite;
    }
    
    .ticker-text {
        padding-right: 50px;
    }

    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .demo-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .demo-arrow {
        transform: rotate(90deg);
    }
    
    .simple-roadmap {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .roadmap-card {
        padding: 1.5rem;
    }
    
    .roadmap-icon {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .tokenomics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    
    .character-image {
        width: 280px;
        height: 280px;
    }
    
    .demo-image {
        width: 200px;
        height: 200px;
    }
    
    .demo-arrow i {
        font-size: 2rem;
    }
    
    .bot-demo {
        padding: 2rem;
    }
    
    .bot-demo h3 {
        font-size: 1.5rem;
    }
}

/* Additional Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Fun hover effects */
.feature-card:hover .feature-icon {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

.product-card:hover .product-icon {
    /* Animation removed */
}

.tokenomics-card:hover .big-number {
    animation: bounce 0.5s ease;
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
} 