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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: #e0e0e0;
    overflow-x: hidden;
}

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

/* Contract Address Bar */
.contract-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1001;
    padding: 8px 0;
}

.contract-bar-content {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.contract-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #cccccc;
    white-space: nowrap;
}

.contract-bar-input-container {
    display: flex;
    gap: 8px;
    align-items: center;
}

.contract-bar-input {
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-size: 0.85rem;
    font-family: 'Courier New', monospace;
    outline: none;
    transition: border-color 0.3s ease;
    min-width: 300px;
}

.contract-bar-input:focus {
    border-color: #666666;
}

.contract-bar-copy-btn {
    padding: 6px 12px;
    background: linear-gradient(45deg, #555555, #666666);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.contract-bar-copy-btn:hover {
    background: linear-gradient(45deg, #666666, #777777);
    transform: translateY(-1px);
}

/* Navigation */
.nav {
    position: fixed;
    top: 45px;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    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: 12px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

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

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #666666, #888888);
    transition: width 0.3s ease;
}

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

.nav-social {
    background: linear-gradient(45deg, #444444, #555555);
    color: #ffffff !important;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.nav-social:hover {
    background: linear-gradient(45deg, #555555, #666666);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.nav-social::after {
    display: none;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(100, 100, 100, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(80, 80, 80, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight-red {
    background: linear-gradient(45deg, #cc4444, #aa3333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-green {
    background: linear-gradient(45deg, #666666, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #555555, #666666);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(100, 100, 100, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(100, 100, 100, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

.btn-social {
    background: linear-gradient(45deg, #1a1a1a, #333333);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-social:hover {
    background: linear-gradient(45deg, #333333, #444444);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(100, 100, 100, 0.2);
}

.floating-logo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(100, 100, 100, 0.2));
}

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

/* Section Styles */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(150, 150, 150, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.problem-card:hover {
    transform: translateY(-10px);
    border-color: rgba(150, 150, 150, 0.4);
    box-shadow: 0 20px 40px rgba(100, 100, 100, 0.1);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #cc4444;
}

.problem-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(45deg, #888888, #aaaaaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-text p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.7;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.benefit-icon {
    font-size: 1.2rem;
}

.crypto-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 300px;
}

.crypto-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #666666, #888888);
    animation: pulse 2s ease-in-out infinite;
}

.crypto-circle:nth-child(2) {
    animation-delay: 0.5s;
}

.crypto-circle:nth-child(3) {
    animation-delay: 1s;
}

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

/* Token Section */
.token-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
}

.token-content {
    display: grid;
    gap: 60px;
}

.token-info {
    text-align: center;
}

.token-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 30px rgba(100, 100, 100, 0.3));
}

.token-info h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #888888, #aaaaaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.token-info p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.marketcap-info {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(150, 150, 150, 0.2);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.marketcap-info h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #999999;
}

.marketcap-info p {
    font-size: 1rem;
    color: #bbbbbb;
    line-height: 1.6;
}

.simple-tweet {
    margin: 20px auto !important;
    max-width: 350px !important;
    transform: scale(0.85);
    transform-origin: center;
}

.tweet-center-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 50px;
    text-align: center;
}

.section-tweet {
    margin: 0 !important;
    max-width: 350px !important;
    transform: scale(0.8);
    transform-origin: center;
}

.contract-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(150, 150, 150, 0.2);
    backdrop-filter: blur(10px);
}

.contract-section h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #888888;
    text-align: center;
}

.contract-input-container {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contract-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(150, 150, 150, 0.3);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Courier New', monospace;
    outline: none;
    transition: border-color 0.3s ease;
}

.contract-input:focus {
    border-color: #666666;
}

.copy-btn {
    padding: 15px 25px;
    background: linear-gradient(45deg, #555555, #666666);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(100, 100, 100, 0.3);
}

.contract-note {
    text-align: center;
    color: #888888;
    font-style: italic;
}

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

.feature {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(150, 150, 150, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: rgba(150, 150, 150, 0.3);
    box-shadow: 0 15px 30px rgba(100, 100, 100, 0.1);
}

.feature h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #888888;
}

.feature p {
    color: #cccccc;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-text {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.footer-social {
    margin: 25px 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(45deg, #1a1a1a, #333333);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(45deg, #333333, #444444);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(100, 100, 100, 0.2);
}

.social-icon {
    font-size: 1.2rem;
    font-weight: bold;
}

.footer-disclaimer {
    color: #888888;
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contract-bar-content {
        flex-direction: column;
        gap: 10px;
    }

    .contract-bar-input {
        min-width: 250px;
    }

    .nav-menu {
        display: none;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

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

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

    .solution-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contract-input-container {
        flex-direction: column;
    }

    .floating-logo {
        width: 200px;
        height: 200px;
    }

    .crypto-animation {
        height: 200px;
    }

    .crypto-circle {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .social-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .token-features {
        grid-template-columns: 1fr;
    }
} 