/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Twitter Action Buttons */
.twitter-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.twitter-btn {
    display: flex !important;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    min-width: 200px;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.twitter-btn:link,
.twitter-btn:visited,
.twitter-btn:active {
    text-decoration: none !important;
}

.twitter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-decoration: none !important;
}

.twitter-btn.opt-in-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: white !important;
}

.twitter-btn.opt-in-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    border-color: #34d399;
    color: white !important;
}

.twitter-btn.shill-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    color: white !important;
}

.twitter-btn.shill-btn:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
    border-color: #fbbf24;
    color: white !important;
}

.btn-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    display: inline-block;
}

.btn-text {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: inline-block;
}

/* Additional button overrides */
.hero .twitter-btn {
    background-clip: padding-box;
    border-style: solid;
}

.hero .twitter-btn * {
    pointer-events: none;
}

/* Force button appearance on all states */
.hero a.twitter-btn,
.hero a.twitter-btn:link,
.hero a.twitter-btn:visited,
.hero a.twitter-btn:hover,
.hero a.twitter-btn:active,
.hero a.twitter-btn:focus {
    text-decoration: none !important;
    outline: none;
}

.hero a.twitter-btn.opt-in-btn,
.hero a.twitter-btn.opt-in-btn:link,
.hero a.twitter-btn.opt-in-btn:visited {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: white !important;
}

.hero a.twitter-btn.shill-btn,
.hero a.twitter-btn.shill-btn:link,
.hero a.twitter-btn.shill-btn:visited {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    color: white !important;
}

/* Links Section */
.links-section {
    padding: 4rem 0;
    background: white;
}

.section-group {
    margin-bottom: 4rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 600;
}

.section-title .icon {
    font-size: 1.8rem;
}

/* Token Info */
.token-info {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.token-address {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.token-address .label {
    font-weight: 600;
    color: #495057;
}

.address {
    background: #e9ecef;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    word-break: break-all;
    flex: 1;
    min-width: 300px;
}

/* Links Grid */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Link Cards */
.link-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 1px solid #e1e8ed;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.card-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-content {
    flex: 1;
}

.card-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.card-content p {
    color: #6c757d;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.link-url {
    font-size: 0.85rem;
    color: #667eea;
    font-weight: 500;
    opacity: 0.8;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-links {
    margin-top: 1rem;
}

.health-link {
    color: #74d680;
    text-decoration: none;
    font-weight: 500;
}

.health-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .link-card {
        padding: 1rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .token-address {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .address {
        min-width: 100%;
        font-size: 0.8rem;
    }
    
    .twitter-actions {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .twitter-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    header {
        padding: 1.5rem 0;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .links-section {
        padding: 2rem 0;
    }
    
    .section-group {
        margin-bottom: 2.5rem;
    }
    
    .link-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .card-icon {
        align-self: center;
    }
    
    .twitter-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .twitter-btn {
        width: 100%;
        max-width: 280px;
        font-size: 0.95rem;
        padding: 0.8rem 1rem;
    }
}

/* Smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.link-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus states for accessibility */
.link-card:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Loading state for dynamic content */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a6fd8;
} 