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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background-color: #0f0f23;
    background-image: 
        radial-gradient(circle at 25% 25%, #1e1e3f 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, #1a1a2e 0%, transparent 50%);
    min-height: 100vh;
}

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

/* Header */
.header {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #2d3748;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #64ffda;
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: #cbd5e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #64ffda;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.1) 0%, rgba(159, 122, 234, 0.1) 100%);
}

.hero h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(100, 255, 218, 0.3);
}

.hero p {
    font-size: 1.2rem;
    color: #a0aec0;
    max-width: 600px;
    margin: 0 auto;
}

/* Rankings Section */
.rankings {
    padding: 4rem 0;
}

.rankings h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
}

.table-container {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #2d3748;
    background: rgba(26, 32, 44, 0.8);
    backdrop-filter: blur(10px);
}

.presales-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.presales-table th {
    background: rgba(45, 55, 72, 0.8);
    color: #64ffda;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #4a5568;
}

.presales-table td {
    padding: 1rem;
    border-bottom: 1px solid #2d3748;
    transition: background-color 0.3s ease;
}

.presales-table tr:hover {
    background: rgba(45, 55, 72, 0.3);
}

.rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #64ffda, #9f7aea);
    color: #0f0f23;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
}

.token-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    width: 100%;
}

.token-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.token-name {
    font-weight: 600;
    color: #ffffff;
}

.token-symbol {
    font-size: 0.85rem;
    color: #a0aec0;
}

.rating {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.1rem;
}

.rating-score {
    font-size: 0.85rem;
    color: #64ffda;
    font-weight: 600;
}

.price {
    font-weight: 600;
    color: #68d391;
}

.raised {
    font-weight: 600;
    color: #9f7aea;
}

.end-date {
    color: #cbd5e0;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #64ffda, #9f7aea);
    color: #0f0f23;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(100, 255, 218, 0.3);
}

/* Reviews Section */
.reviews {
    padding: 4rem 0;
    background: rgba(26, 32, 44, 0.3);
}

.reviews h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: rgba(45, 55, 72, 0.8);
    border: 1px solid #4a5568;
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.2);
}

.review-header {
    margin-bottom: 1rem;
}

.review-header .token-info {
    gap: 1rem;
}

.review-header .token-logo {
    width: 48px;
    height: 48px;
}

.review-header h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.review-content {
    margin-bottom: 1.5rem;
}

.review-content p {
    color: #cbd5e0;
    margin-bottom: 1rem;
}

.review-highlights {
    background: rgba(26, 32, 44, 0.6);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #64ffda;
}

.review-highlights h4 {
    color: #64ffda;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.review-highlights ul {
    list-style: none;
    padding: 0;
}

.review-highlights li {
    color: #cbd5e0;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.review-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #68d391;
    font-weight: bold;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #a0aec0;
    border-top: 1px solid #4a5568;
    padding-top: 1rem;
}

/* Token Details Section */
.token-details {
    padding: 4rem 0;
}

.general-takeaways {
    background: rgba(26, 32, 44, 0.8);
    border: 1px solid #4a5568;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    backdrop-filter: blur(10px);
}

.general-takeaways h3 {
    color: #64ffda;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.takeaways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.takeaway-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(45, 55, 72, 0.4);
    border-radius: 8px;
    border-left: 3px solid #64ffda;
}

.takeaway-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.takeaway-item p {
    color: #cbd5e0;
    margin: 0;
    line-height: 1.5;
}

.takeaway-item strong {
    color: #ffffff;
}

.token-details h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
}

.section-intro {
    text-align: center;
    color: #a0aec0;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.token-list {
    display: grid;
    gap: 3rem;
    padding: 2rem 0;
}

.token-detail-card {
    background: rgba(45, 55, 72, 0.95);
    border: 1px solid #4a5568;
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    margin-bottom: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.token-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: linear-gradient(135deg, #64ffda, #9f7aea);
    color: #0f0f23;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(100, 255, 218, 0.3);
}

.token-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.2);
}

.token-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(100, 255, 218, 0.2);
}

.token-detail-info {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.token-detail-meta h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.token-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tag.meme {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid #dc2626;
}

.tag.utility {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid #3b82f6;
}

.tag.layer2 {
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
    border: 1px solid #a855f7;
}

.tag.infrastructure {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid #22c55e;
}

.tag.dao {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
    border: 1px solid #f59e0b;
}

.tag.governance {
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
    border: 1px solid #8b5cf6;
}

.tag.hot {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid #dc2626;
    animation: pulse 2s infinite;
}

.tag.trending {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid #22c55e;
}

.tag.ending {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
    border: 1px solid #f59e0b;
    animation: pulse 2s infinite;
}

.tag.honest {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid #22c55e;
}

.tag.new {
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
    border: 1px solid #a855f7;
    animation: pulse 2s infinite;
}

.tag.trading {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid #3b82f6;
}

.tag.solana {
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
    border: 1px solid #8b5cf6;
}

.tag.growing {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid #22c55e;
}

.tag.bitcoin {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
    border: 1px solid #f59e0b;
}

.tag.scalability {
    background: rgba(6, 182, 212, 0.2);
    color: #22d3ee;
    border: 1px solid #06b6d4;
}

.token-detail-price {
    text-align: right;
    min-width: 120px;
}

.current-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #64ffda;
    margin-bottom: 0.25rem;
}

.raised-amount {
    display: block;
    font-size: 0.9rem;
    color: #a0aec0;
}

.token-description {
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.token-description p {
    color: #cbd5e0;
    line-height: 1.7;
    font-size: 1.1rem;
}

.video-container {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(26, 32, 44, 0.8);
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.video-container::before {
    content: "";
    display: block;
    padding-top: 100%; /* 1:1 Aspect Ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.key-takeaways {
    margin-bottom: 1.5rem;
    background: rgba(26, 32, 44, 0.6);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #64ffda;
}

.key-takeaways h4 {
    color: #64ffda;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.key-takeaways ul {
    list-style: none;
    padding: 0;
}

.key-takeaways li {
    color: #cbd5e0;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.4;
}

.key-takeaways li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #68d391;
    font-weight: bold;
}

.token-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
    margin-top: 1rem;
}

.btn-secondary {
    background: transparent;
    color: #64ffda;
    padding: 0.75rem 1.5rem;
    border: 2px solid #64ffda;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #64ffda;
    color: #0f0f23;
    transform: translateY(-2px);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Footer */
.footer {
    background: rgba(15, 15, 35, 0.95);
    border-top: 1px solid #2d3748;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #64ffda;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #cbd5e0;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #64ffda;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #a0aec0;
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.85rem;
    color: #718096;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Token Logo Styles */
.token-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, #64ffda, #9f7aea);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #ffffff;
    font-size: 10px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    flex-shrink: 0;
    margin-right: 0.75rem;
}

.token-logo[alt="Wall Street Pepe"] {
    background: linear-gradient(135deg, #00ff88, #00cc66);
}

.token-logo[alt="Solaxy"] {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

.token-logo[alt="Flockerz"] {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.token-logo[alt="Best Wallet Token"] {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.token-logo[alt="Token6900"] {
    background: linear-gradient(135deg, #8b5cf6, #c084fc);
}

.token-logo[alt="Snorter Bot"] {
    background: linear-gradient(135deg, #f97316, #fb923c);
}

.token-logo[alt="Bitcoin Hyper"] {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.token-logo[alt="BTC Bull Token"] {
    background: linear-gradient(135deg, #dc2626, #f87171);
}

.token-logo[alt="Little Pepe"] {
    background: linear-gradient(135deg, #22c55e, #4ade80);
}

.token-logo[alt="SpacePay"] {
    background: linear-gradient(135deg, #06b6d4, #67e8f9);
}

.token-logo[alt="Cogni AI"] {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.review-header .token-logo {
    width: 48px;
    height: 48px;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .rankings h2,
    .reviews h2,
    .blog h2 {
        font-size: 2rem;
    }
    
    .table-container {
        border-radius: 8px;
    }
    
    .presales-table th,
    .presales-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .token-info {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .review-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card,
    .token-detail-card {
        padding: 1.5rem;
    }
    
    .token-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .token-detail-price {
        text-align: left;
        margin-top: 1rem;
    }
    
    
    .video-container {
        max-width: 300px;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .rankings,
    .reviews,
    .token-details {
        padding: 2rem 0;
    }
    
    .token-info {
        gap: 0.25rem;
    }
    
    .token-logo {
        width: 24px !important;
        height: 24px !important;
    }
    
    .review-header .token-logo {
        width: 40px !important;
        height: 40px !important;
    }
    
    .review-card,
    .token-detail-card {
        padding: 1rem;
    }
    
    
    .video-container {
        max-width: 280px;
    }
    
    .token-actions {
        flex-direction: column;
    }
}