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

body {
    font-family: 'Orbitron', monospace;
    background: linear-gradient(135deg, #000000 0%, #0a0a2e 50%, #000033 100%);
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* Background Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 128, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 0, 0, 0.05) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

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

.hero-content {
    z-index: 2;
}

.main-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 4rem;
    color: #00ff00;
    text-shadow: 
        0 0 10px #00ff00,
        0 0 20px #00ff00,
        0 0 30px #00ff00;
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00; }
    to { text-shadow: 0 0 20px #00ff00, 0 0 30px #00ff00, 0 0 40px #00ff00; }
}

.tagline {
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px #00ffff;
}

.author {
    font-size: 1rem;
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
    font-style: italic;
    margin-top: 0.5rem;
    display: block;
}

/* Branksy Story */
.branksy-story {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #ff00ff;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 30px #ff00ff;
    backdrop-filter: blur(10px);
}

.story-text {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.6;
    text-align: left;
}

.story-text:last-child {
    margin-bottom: 0;
}

.highlight {
    color: #ff00ff;
    font-weight: bold;
    text-shadow: 0 0 10px #ff00ff;
    animation: highlightGlow 2s ease-in-out infinite alternate;
}

@keyframes highlightGlow {
    from { text-shadow: 0 0 10px #ff00ff; }
    to { text-shadow: 0 0 20px #ff00ff, 0 0 30px #ff00ff; }
}

/* Visit Counter */
.visit-counter {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #00ffff;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 30px #00ffff;
    backdrop-filter: blur(10px);
    text-align: center;
}

.visit-counter h3 {
    color: #00ffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #00ffff;
}

.counter-display {
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid #00ffff;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1rem 0;
    display: inline-block;
    min-width: 200px;
}

#visit-count {
    font-family: 'Press Start 2P', cursive;
    font-size: 3rem;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
    animation: counterGlow 2s ease-in-out infinite alternate;
}

@keyframes counterGlow {
    from { text-shadow: 0 0 20px #00ffff; }
    to { text-shadow: 0 0 30px #00ffff, 0 0 40px #00ffff; }
}

.counter-subtitle {
    color: #ffffff;
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-family: 'Orbitron', monospace;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, #00ff00, #00cc00);
    color: #000;
    box-shadow: 0 0 20px #00ff00;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px #00ff00;
}

.btn-secondary {
    background: transparent;
    color: #00ffff;
    border: 2px solid #00ffff;
    box-shadow: 0 0 20px #00ffff;
}

.btn-secondary:hover {
    background: #00ffff;
    color: #000;
    transform: translateY(-3px);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.moon, .rocket, .lambo {
    position: absolute;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.moon {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.rocket {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.lambo {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Tokenomics Section */
.tokenomics {
    padding: 4rem 2rem;
    text-align: center;
}

.tokenomics h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 2.5rem;
    color: #ff00ff;
    margin-bottom: 3rem;
    text-shadow: 0 0 15px #ff00ff;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tokenomics-card {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 0 20px #00ff00;
    transition: all 0.3s ease;
}

.tokenomics-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px #00ff00;
}

.tokenomics-card h3 {
    color: #00ffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.tokenomics-card .value {
    font-size: 2rem;
    font-weight: bold;
    color: #00ff00;
    margin-bottom: 0.5rem;
}

.tokenomics-card .description {
    color: #ffffff;
    font-style: italic;
}

/* Coffee Section */
.coffee-section {
    padding: 4rem 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
}

.coffee-section h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 2.5rem;
    color: #ffaa00;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px #ffaa00;
}



.coffee-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.coffee-btn {
    padding: 1.5rem 2rem;
    border: none;
    border-radius: 15px;
    font-family: 'Orbitron', monospace;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #ffaa00, #ff8800);
    color: #000;
    box-shadow: 0 0 20px #ffaa00;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.coffee-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px #ffaa00;
    color: #000;
    text-decoration: none;
}

/* Wallet styles removed - no longer needed */

/* Responsive Design for Coffee Buttons */
@media (max-width: 768px) {
    .coffee-section {
        padding: 2rem 1rem;
    }
    
    .coffee-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .coffee-options {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
        margin-top: 1.5rem;
    }
    
    .coffee-btn {
        width: 280px;
        max-width: 90vw;
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 0;
    }
    
    .hero-buttons {
        margin-top: 1.5rem;
    }
    
    .btn-secondary {
        width: 280px;
        max-width: 90vw;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        line-height: 1.3;
    }
}

/* Advice Section */
.advice-section {
    padding: 4rem 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
}

.advice-section h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 2rem;
    color: #ff00ff;
    margin-bottom: 3rem;
    text-shadow: 0 0 15px #ff00ff;
}

.advice-list {
    max-width: 800px;
    margin: 0 auto;
}

.advice-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #ff00ff;
    border-radius: 15px;
    box-shadow: 0 0 20px #ff00ff;
    transition: all 0.3s ease;
}

.advice-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px #ff00ff;
}

.advice-number {
    font-family: 'Press Start 2P', cursive;
    font-size: 2rem;
    color: #ff00ff;
    text-shadow: 0 0 15px #ff00ff;
    min-width: 60px;
    text-align: center;
}

    .advice-item p {
        color: #ffffff;
        font-size: 1.1rem;
        line-height: 1.6;
        text-align: left;
        margin: 0;
    }

    /* Biography Section */
    .biography-section {
        padding: 4rem 2rem;
        text-align: center;
        background: rgba(0, 0, 0, 0.5);
    }

    .biography-section h2 {
        font-family: 'Press Start 2P', cursive;
        font-size: 2rem;
        color: #00ffff;
        margin-bottom: 3rem;
        text-shadow: 0 0 15px #00ffff;
    }

    .bio-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .bio-item {
        background: rgba(0, 0, 0, 0.7);
        border: 2px solid #00ffff;
        border-radius: 15px;
        padding: 2rem;
        box-shadow: 0 0 20px #00ffff;
        transition: all 0.3s ease;
        text-align: left;
    }

    .bio-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 30px #00ffff;
    }

    .bio-item h3 {
        color: #00ffff;
        font-size: 1.3rem;
        margin-bottom: 1rem;
        text-shadow: 0 0 10px #00ffff;
        font-family: 'Press Start 2P', cursive;
    }

    .bio-item p {
        color: #ffffff;
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 0.5rem;
    }

    .bio-item ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .bio-item li {
        color: #ffffff;
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 0.5rem;
        padding-left: 1rem;
        position: relative;
    }

    .bio-item li:before {
        content: '•';
        color: #00ffff;
        font-weight: bold;
        position: absolute;
        left: 0;
        text-shadow: 0 0 10px #00ffff;
    }

    .bio-item.quote {
        grid-column: span 2;
        text-align: center;
    }

    .bio-item.quote .famous-quote {
        font-family: 'Press Start 2P', cursive;
        font-size: 1.2rem;
        color: #00ffff;
        text-shadow: 0 0 15px #00ffff;
        font-style: italic;
        margin: 0;
    }

    .bio-item.famous-works {
        grid-column: span 2;
    }

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.8);
    border-top: 2px solid #00ff00;
}

footer p {
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
}

/* Branksy Quote */
.branksy-quote {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #00ffff;
    border-radius: 15px;
    box-shadow: 0 0 20px #00ffff;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.quote-text {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.2rem;
    color: #00ffff;
    text-shadow: 0 0 15px #00ffff;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-style: italic;
}

.quote-author {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
    margin: 0;
    font-weight: bold;
}

/* Responsive Quote */
@media (max-width: 768px) {
    .quote-text {
        font-size: 1rem;
    }
    
    .quote-author {
        font-size: 0.9rem;
    }
    
    .branksy-quote {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .author {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    
    .coffee-options {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-elements {
        display: none;
    }
    
    .branksy-story {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .story-text {
        font-size: 1rem;
        text-align: center;
    }
    
    .visit-counter {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .visit-counter h3 {
        font-size: 1rem;
    }
    
    #visit-count {
        font-size: 2rem;
    }
    
    .advice-section h2 {
        font-size: 1.5rem;
    }
    
    .advice-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .advice-number {
        font-size: 1.5rem;
        min-width: auto;
    }
    
    .advice-item p {
        text-align: center;
        font-size: 1rem;
    }
    
    .biography-section h2 {
        font-size: 1.5rem;
    }
    
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bio-item {
        padding: 1.5rem;
    }
    
    .bio-item h3 {
        font-size: 1.2rem;
    }
    
    .bio-item p, .bio-item li {
        font-size: 0.9rem;
    }
    
    .famous-quote {
        font-size: 1.1rem !important;
    }
}
