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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f7fa;
}

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

/* Header */
header {
    background: #1a1a2e;
    color: white;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Header styles içine veya style.css'ye ekle */
.logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Karanlık temada logo görünsün diye */
.logo img {
    filter: brightness(0) invert(1); /* Beyaz yapar (opsiyonel) */
}


.logo a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links a {
    color: #ddd;
    text-decoration: none;
    margin-left: 2rem;
}

.nav-links a:hover {
    color: white;
}

/* Ana sayfa */
.hero {
    text-align: center;
    margin: 3rem 0;
}

.hero h1 {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.search-box {
    display: flex;
    max-width: 600px;
    margin: 2rem auto;
}

.search-box input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px 0 0 8px;
    font-size: 1rem;
}

.search-box button {
    padding: 1rem 2rem;
    background: #1a1a2e;
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
}

/* Token kartları */
.token-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.token-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    cursor: pointer;
}

.token-card:hover {
    transform: translateY(-5px);
}

.token-card h3 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.address {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    word-break: break-all;
}

.risk-meter {
    height: 8px;
    background: #eee;
    border-radius: 4px;
    margin: 1rem 0;
    overflow: hidden;
}

.risk-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #ff4444);
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-safe {
    background: #d4edda;
    color: #155724;
}

.badge-scam {
    background: #f8d7da;
    color: #721c24;
}

/* Token detay */
.token-detail {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.token-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.stat-card {
    background: #f5f7fa;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.stat-card.high-risk {
    border-left: 4px solid #dc3545;
}

.stat-card.medium-risk {
    border-left: 4px solid #ffc107;
}

.stat-card.low-risk {
    border-left: 4px solid #28a745;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-top: 0.5rem;
}

/* Premium içerik */
.premium-lock {
    background: #f5f7fa;
    border: 2px dashed #1a1a2e;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    margin: 2rem 0;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #1a1a2e;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 1rem;
}

.btn:hover {
    background: #16213e;
}

/* Formlar */
.form-container {
    max-width: 500px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 8px;
}

/* Footer */
footer {
    background: #1a1a2e;
    color: #ddd;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

.disclaimer {
    font-size: 0.8rem;
    margin-top: 1rem;
    opacity: 0.7;
}