@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    color: #00ff88;
    min-height: 100vh;
    overflow-x: hidden;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    border: 2px solid #00ff88;
    border-radius: 10px;
    background: rgba(0, 255, 136, 0.1);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 0 20px #00ff88;
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.8;
    animation: glow 2s ease-in-out infinite alternate;
}

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

.terminal-section {
    margin: 40px 0;
    border: 2px solid #00ff88;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.7);
    overflow: hidden;
}

.terminal-header {
    background: #00ff88;
    color: #000;
    padding: 10px 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terminal-buttons {
    display: flex;
    gap: 5px;
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}

.terminal-button:nth-child(2) { background: #ffbd2e; }
.terminal-button:nth-child(3) { background: #27ca3f; }

.terminal-content {
    padding: 20px;
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.6;
}

.command-line {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.prompt {
    color: #ff6b9d;
    margin-right: 10px;
}

.command {
    color: #c7ecee;
}

.output {
    color: #00ff88;
    margin-left: 20px;
}

.interactive-terminal {
    background: #000;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.terminal-input {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.terminal-input input {
    background: transparent;
    border: none;
    color: #00ff88;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    outline: none;
    flex: 1;
    margin-left: 10px;
}

.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.dog-ascii {
    color: #ffab00;
    font-size: 12px;
    white-space: pre;
    margin: 20px 0;
    text-align: center;
}

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

.feature-card {
    border: 1px solid #00ff88;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 255, 136, 0.05);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b9d;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.feature-title {
    color: #ff6b9d;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.crypto-ticker {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    overflow: hidden;
}

.ticker-content {
    animation: scroll 20s linear infinite;
    white-space: nowrap;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.price-up { color: #00ff88; }
.price-down { color: #ff5f56; }

.interactive-buttons {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.btn {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
    background: linear-gradient(45deg, #ff6b9d, #d15384);
    color: white;
}

@media (max-width: 768px) {
    .logo { font-size: 2rem; }
    .container { padding: 10px; }
    .features { grid-template-columns: 1fr; }
    .interactive-buttons { justify-content: center; }
    .terminal-header span { font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .logo { font-size: 1.5rem; }
    .tagline { font-size: 1rem; }
    .feature-card { padding: 15px; }
    .btn { padding: 8px 16px; font-size: 0.9rem; }
    .ca-container { padding: 15px; }
    .ca-address { font-size: 0.8rem; }
    .ca-links { flex-direction: column; gap: 5px; }
}

/* Contract Address Section */
.ca-section {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.ca-container {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff88;
    border-radius: 15px;
    padding: 25px;
    max-width: 600px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.ca-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ff88, #ff6b9d, #00ff88, #ff6b9d);
    background-size: 400% 400%;
    animation: borderGlow 3s ease-in-out infinite;
    border-radius: 15px;
    z-index: -1;
}

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

.ca-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.ca-icon {
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.ca-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00ff88;
    text-shadow: 0 0 10px #00ff88;
}

.live-badge {
    background: #ff5f56;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.ca-address-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    background: rgba(0, 255, 136, 0.1);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.ca-address {
    flex: 1;
    font-family: 'JetBrains Mono', monospace;
    color: #ffffff;
    font-size: 0.9rem;
    word-break: break-all;
    letter-spacing: 1px;
    animation: typewriter 3s ease-in-out infinite;
}

@keyframes typewriter {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: 0.7; }
}

.ca-copy-btn {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    color: #000;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 80px;
    justify-content: center;
}

.ca-copy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

.ca-copy-btn.copied {
    background: linear-gradient(45deg, #ff6b9d, #d15384);
    color: white;
}

.ca-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.ca-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 157, 0.3);
}

.ca-label {
    font-size: 0.8rem;
    color: #ff6b9d;
    margin-bottom: 5px;
}

.ca-value {
    font-weight: bold;
    color: #ffffff;
    font-size: 1.1rem;
    animation: countUp 2s ease-out;
}

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

.ca-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.ca-link {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.ca-link:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00ff88;
    transform: translateY(-2px);
}

.hype-banner {
    background: linear-gradient(45deg, #ff6b9d, #00ff88, #ff6b9d);
    background-size: 200% 200%;
    animation: hypeGradient 3s ease-in-out infinite;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    color: #000;
    font-weight: bold;
}

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

.hype-text {
    font-size: 1.2rem;
    margin-bottom: 5px;
    animation: shake 0.5s ease-in-out infinite alternate;
}

@keyframes shake {
    0% { transform: translateX(-2px); }
    100% { transform: translateX(2px); }
}

.hype-subtext {
    font-size: 0.9rem;
    opacity: 0.9;
}