/* =================================================================
   Ofizyo Studio - BİRLEŞTİRİLMİŞ STİL DOSYASI (main.css)
   ofizyo.com temasını temel alır ve Studio'ya özel stilleri içerir.
   ================================================================= */

/* --- 1. RENK PALETİ VE TEMEL AYARLAR (ofizyo.com'dan alındı) --- */
:root {
    --bg-dark: #0A0C10;
    --bg-panel: #1c1e24;
    --border-color: #313541;
    --text-primary: #F0F2F5;
    --text-secondary: #8A919E;
    --accent-indigo: #69c43c;
    /* Ana Renk */
    --accent-green: #00bf30;
    --accent-glow: rgba(40, 70, 12, 0.4);
    --warning: #fbbf24;
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* --- 2. GENEL STİLLER (ofizyo.com'dan alındı) --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
}

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

/* --- 3. ANA UYGULAMA KAPSAYICISI (Studio'ya özel düzenlendi) --- */
.app-container {
    max-width: 1400px;
    margin: 20px auto;
    /* Sayfayı ortalamak için */
    background-color: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.main-wrapper {
    width: 100%;
}

.content-area {
    padding: 40px;
}

/* Studio için daha iyi bir iç boşluk */

.page {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- 4. BELİRGİN BUTON STİLLERİ (ofizyo.com'dan alındı) --- */
.action-button {
    background-color: var(--accent-indigo);
    color: #FFFFFF;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--accent-indigo);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px -5px var(--accent-glow);
    white-space: nowrap;
}

.action-button:hover {
    transform: translateY(-3px);
    background-color: #339900;
    box-shadow: 0 8px 25px -5px var(--accent-glow);
}

.action-button.secondary {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    box-shadow: none;
}

.action-button.secondary:hover {
    background-color: var(--bg-panel);
    border-color: var(--text-secondary);
}

/* --- 5. STUDIO'YA ÖZEL BİLEŞENLER --- */
.panel {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.panel-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.welcome-header {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 24px;
}

.welcome-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.welcome-header .lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 32px;
    text-align: center;
}

.buy-button {
    background: var(--accent-indigo);
    color: var(--text-primary);
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: block;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    transition: background-color 0.3s ease;
}

.buy-button:hover {
    background-color: #ba5100;
}

/* --- 6. GENEL RESPONSIVE AYARLARI --- */
@media (max-width: 1400px) {
    body {
        padding: 0;
    }

    .app-container {
        margin: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
        min-height: 100vh;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .content-area {
        padding: 20px 10px;
    }

    .app-container {
        margin: 0;
        border-radius: 0;
        border: none;
    }
}