/* Modern Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

:root {
    --primary: #f1712a;
    --primary-dark: #d65a16;
    --bg-dark: #0f172a;
    --bg-panel-dark: rgba(15, 23, 42, 0.6);
    --text-white: #f8fafc;
    --text-muted: #94a3b8;
    --card-glass: rgba(255, 255, 255, 0.08);
    --border-glass: rgba(255, 255, 255, 0.1);
    --success: #10b981;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Animasyonlu Arka Plan */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #f1712a;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #3b82f6;
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #6366f1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -50px) rotate(10deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

/* Split Container */
.split-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    min-height: 100vh;
}

/* SOL PANEL - Domain Vitrini */
.left-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Ortala */
    padding: 3rem;
    position: relative;
    backdrop-filter: blur(10px);
    border-right: 1px solid var(--border-glass);
    text-align: center;
    /* Metinleri ortala */
}

.logo-wrapper {
    margin-bottom: 2rem;
}

.logo-img {
    height: 60px;
    /* Logo biraz daha belirgin olsun */
    width: auto;
    /* transition: transform 0.3s ease; - Gerekirse animasyon kalabilir */
}

.status-badge {
    background: rgba(241, 113, 42, 0.15);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(241, 113, 42, 0.3);
}

.domain-name {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, white 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    word-break: break-word;
    /* Satır sonlarında kelimeyi bölmeden aşağı at */
    max-width: 100%;
}

.domain-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 400px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(241, 113, 42, 0.3);
}

.cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(241, 113, 42, 0.5);
}

.trust-icons {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    opacity: 0.6;
}

.trust-icons i {
    font-size: 1.5rem;
    color: white;
    transition: transform 0.2s;
}

.trust-icons i:hover {
    transform: scale(1.2);
    color: var(--primary);
}

.footer-mini {
    position: absolute;
    bottom: 2rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* SAĞ PANEL - Hosting Fırsatları */
.right-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.2);
}

.promo-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.promo-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
}

.plan-card {
    background: var(--card-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.plan-card.popular {
    background: linear-gradient(145deg, rgba(241, 113, 42, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(241, 113, 42, 0.3);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.3);
}

.popular-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 30px;
    text-transform: uppercase;
}

.plan-name {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.plan-price small {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-white);
}

.plan-features li i {
    color: var(--success);
    font-size: 0.9rem;
}

.plan-btn {
    display: block;
    text-align: center;
    padding: 0.8rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.plan-btn:hover {
    background: white;
    color: var(--bg-dark);
}

.plan-btn.primary-btn {
    background: var(--primary);
    color: white;
}

.plan-btn.primary-btn:hover {
    background: var(--primary-dark);
}

/* Responsive */
@media (max-width: 1024px) {
    .split-container {
        grid-template-columns: 1fr;
    }

    .left-panel {
        padding: 4rem 2rem;
        border-right: none;
        border-bottom: 1px solid var(--border-glass);
    }

    .right-panel {
        padding: 3rem 1.5rem;
        background: transparent;
    }

    .plans-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}