:root {
    --bg-dots: #d1d5db; 
    --bg-color: #f9fafb; 
    --nav-bg: #111827; 
    --card-bg: #ffffff; 
    --primary-color: #ef4444; /* Vurgu kırmızısı */
    --primary-glow: rgba(239, 68, 68, 0.4);
    --secondary-color: #1f2937;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --transition-speed: 0.3s;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    background-image: radial-gradient(var(--bg-dots) 1px, transparent 1px);
    background-size: 20px 20px;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 70px;
}

h1, h2, h3, .logo {
    font-family: 'Outfit', sans-serif;
}

/* Navbar */




.logo {
    font-size: 1.8rem;
    font-weight: 700;
    cursor: pointer;
    color: white;
}

.highlight {
    color: var(--primary-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-speed);
    position: relative;
}

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

.social-links {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.social-links a {
    color: #d1d5db;
    font-size: 1.4rem;
    transition: all var(--transition-speed);
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s;
}

/* Dashboard Layout */
.dashboard-layout {
    padding: 120px 5% 4rem 5%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 3rem;
}

.dashboard-header h1 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.dashboard-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
}

.dashboard-card {
    margin-top: 0 !important;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Live Banner Card */
.live-banner {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: white;
    border-radius: 16px;
    padding: 20px;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 2px solid rgba(239, 68, 68, 0.4);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.live-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(239, 68, 68, 0.2);
    color: white;
}

.live-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.live-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 1px;
}

.live-badge::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    animation: pulse-white 1.5s infinite;
}

@keyframes pulse-white {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.live-banner h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
}

.live-banner p {
    font-size: 1rem;
    color: #d1d5db;
    margin-bottom: 15px;
}

.live-action-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.4);
}

/* Cards Section (No longer needed entirely but kept for fallback) */
.cards-container {
    /* Removed old grid code, using dashboard-grid instead */
}

.tool-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all var(--transition-speed);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--primary-color);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.tool-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.tool-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.card-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--bg-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all var(--transition-speed);
}

.card-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Footer */
.site-footer {
    background-color: var(--nav-bg);
    color: white;
    padding: 4rem 5% 1.5rem;
    margin-top: 4rem;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
}

.footer-text {
    color: #9ca3af;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-socials a {
    color: white;
    font-size: 1.8rem;
    transition: all var(--transition-speed);
}

.footer-socials a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #6b7280;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .dashboard-header h1 { font-size: 2.2rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
}
