:root {
    --bg-dark: #030711;
    --bg-alt: #f8fafc;
    --card-bg: #0B1120;
    --primary-orange: #FF9A44;
    --primary-red: #E31E24;
    --accent-orange: rgba(255, 154, 68, 0.1);
    --text-main: #ffffff;
    --text-dim: #94A3B8;
    --border-color: #1E293B;
    --primary-gradient: linear-gradient(135deg, #FF9A44 0%, #E31E24 60%, #662D91 100%);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(255, 154, 68, 0.1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: "Plus Jakarta Sans", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% -20%, rgba(255, 154, 68, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(227, 30, 36, 0.03) 0%, transparent 40%);
    z-index: -1;
}

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

/* --- HEADER --- */
header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-dark);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    display: block;
    position: relative;
    width: 160px;
}

.logo .slc {
    position: absolute;
    bottom: 0;
    right: 0;
    color: var(--text-main);
}

.hero {
    padding: 100px 0 60px;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 8px 18px;
    background-color: rgba(132, 204, 22, 0.1);
    border: 1px solid rgba(132, 204, 22, 0.2);
    border-radius: 100px;
    color: #A6E635;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: clamp(38px, 7vw, 64px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    color: var(--text-main);
}

h1 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    max-width: 650px;
    margin: 0 auto 40px;
    color: var(--text-dim);
    font-size: 18px;
    font-weight: 500;
}

/* --- COUNTDOWN --- */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 12px; /* Mobilde boşluğu biraz daralttık */
    margin: 40px 0;
    flex-wrap: wrap; /* Küçük ekranlarda alt alta geçebilmesi için */
}

.time-box {
    background: var(--card-bg);
    padding: 20px 10px;
    border-radius: 20px;
    flex: 1;
    min-width: 80px;
    max-width: 120px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
}

.time-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-orange);
}

.time-box span {
    display: block;
    font-size: clamp(24px, 5vw, 38px);
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 5px;
}

.time-box p {
    color: var(--text-dim);
    font-size: clamp(9px, 2vw, 11px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

@media (max-width: 480px) {
    .countdown-container {
        gap: 8px;
    }
    .time-box {
        min-width: calc(25% - 8px);
        padding: 15px 5px;
    }
}

/* --- SERVICES --- */
.services { padding: 80px 0; background-color: var(--bg-dark); }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title p { color: var(--text-dim); font-weight: 800; margin-bottom: 8px; text-transform: uppercase; font-size: 14px; }
.section-title h2 { font-size: 32px; font-weight: 800; color: var(--text-main); }

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

.service-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card i {
    font-size: 34px;
    margin-bottom: 25px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.service-card h3 { font-size: 22px; margin-bottom: 15px; font-weight: 700; }
.service-card p { color: var(--text-dim); font-size: 15px; }

/* --- AI SOCIAL CARD --- */
.social-ai-card {
    background: var(--card-bg);
    border-radius: 40px;
    padding: 60px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 50px;
}

.ai-glow-icon {
    width: 60px; height: 60px;
    background: var(--primary-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center; justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 10px 20px rgba(227, 30, 36, 0.2);
    margin-bottom: 20px;
}

.social-tags { display: flex; gap: 8px; margin-top: 25px; }
.social-tags span {
    padding: 6px 14px;
    background: var(--bg-dark);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dim);
    border: 1px solid var(--border-color);
}

.visual-circle {
    width: 280px; height: 280px;
    border: 2px dashed #475569;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    animation: rotate 40s linear infinite;
    position: relative;
    opacity: 0.6;
}

.visual-icons {
    position: absolute;
    width: 100%; height: 100%;
    display: flex; justify-content: space-around; align-items: center;
    color: #ffffff;
}

.visual-icons i {
    font-size: 24px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white; border: none;
    padding: 15px 32px; border-radius: 14px;
    font-weight: 700; cursor: pointer;
    box-shadow: 0 10px 20px rgba(227, 30, 36, 0.2);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(227, 30, 36, 0.3);
}

.modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center; justify-content: center;
}

.modal.active { display: flex; }

.modal-content {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 32px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-color);
}

.close {
    position: absolute;
    right: 25px; top: 25px;
    font-size: 24px;
    color: var(--text-dim);
    cursor: pointer;
}

.modal-content h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 30px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-item {
    background: #F1F5F9;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #CBD5E1;
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    text-align: left;
    text-decoration: none;
    font-style: normal;
}
.info-item a {
    color: var(--bg-dark);
    text-decoration: none;
}

.modal-content .close {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    font-size: 24px;
    cursor: pointer;
}


.info-item i {
    font-size: 20px;
    color: var(--primary-red);
    background: rgba(227, 30, 36, 0.1);
    width: 45px; height: 45px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}

footer {
    padding: 60px 0;
    margin-top: 80px;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    position: relative;
}

.footer-logo-minimal {
    margin-bottom: 20px;
    filter: grayscale(1);
    opacity: 0.6;
    transition: 0.3s;
}

.footer-logo-minimal:hover { opacity: 1; filter: none; }

.copyright-text {
    color: var(--text-dim);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.copyright-text span { color: #ffffff; }

@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Mobile Optimization */
@media (max-width: 992px) {
    .social-ai-card { flex-direction: column; padding: 40px 20px; text-align: center; }
    .ai-glow-icon { margin: 0 auto 20px; }
    .social-tags { justify-content: center; }
}


.special-section {
    padding-top: 40px;
}


.social-content {
    padding: 20px;
}
