/* ========================================
   DryreL Hub - Ana Stil Dosyası
   Tüm sayfalar için ortak stiller
   ======================================== */

/* Font Loading Optimization */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfAZ9hiJ-Ek-_EeA.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Reset ve Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Enable text selection for all text elements */
p, h1, h2, h3, h4, h5, h6, span, div, a, li, td, th {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

:root {
    /* Light Mode Variables */
    --bg-primary: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --bg-secondary: linear-gradient(135deg, rgba(248, 250, 252, 0.7), rgba(226, 232, 240, 0.7));
    --text-primary: #000000;
    --text-secondary: #333333;
    --container-bg: rgba(255, 255, 255, 0.7);
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    --selection-bg: rgba(102, 126, 234, 0.2);
    --selection-bg-drag: rgba(102, 126, 234, 0.05);
    /* Hover Effects */
    --hover-bg: rgba(0, 0, 0, 0.15);
    --hover-border: rgba(0, 0, 0, 0.3);
    --hover-shadow: rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] {
    /* Dark Mode Variables */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --container-bg: rgba(30, 35, 45, 0.7);
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    --selection-bg: rgba(102, 126, 234, 0.3);
    --selection-bg-drag: rgba(102, 126, 234, 0.1);
    /* Dark Mode Hover Effects */
    --hover-bg: rgba(0, 0, 0, 0.5);
    --hover-border: rgba(255, 255, 255, 0.3);
    --hover-shadow: rgba(0, 0, 0, 0.4);
}

/* Light Mode - Black text for all left side content */
[data-theme="light"] .hub-description,
[data-theme="light"] .hub-description-second,
[data-theme="light"] .contact-info h3,
[data-theme="light"] .contact-link,
[data-theme="light"] .footer-text,
[data-theme="light"] .footer-link {
    color: #000000 !important;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
}

/* Gradient overlay - mevcut gradient (en arkada) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-primary);
    z-index: -2;
    pointer-events: none;
}

/* Arka plan resmi - fixed pozisyon (gradient'ın üstünde) */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('/assets/images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
    pointer-events: none;
}


/* ========================================
   Container ve Layout Stilleri
   ======================================== */
.maintenance-container {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--text-primary);
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.lang-btn i {
    font-size: 1rem;
}

/* ========================================
   Arka Plan Animasyonu
   ======================================== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

.shape-5 {
    width: 140px;
    height: 140px;
    top: 70%;
    left: 60%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* ========================================
   Ana İçerik Container
   ======================================== */
.main-content {
    text-align: center;
    max-width: 800px;
    width: fit-content;
    min-width: 600px;
    min-height: 500px;
    background: var(--bg-secondary);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 3rem 2rem 1rem 2rem;
    -webkit-tap-highlight-color: transparent;
    transform: none;
    box-shadow: var(--shadow);
    animation: slideUp 1s ease-out;
    color: var(--text-primary);
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
    position: relative;
    
    /* Yazı seçimi highlight - normal durum */
    ::selection {
        background-color: var(--selection-bg);
        color: var(--text-primary);
    }
    
    ::-moz-selection {
        background-color: var(--selection-bg);
        color: var(--text-primary);
    }
    
    /* Drag aktifken yazı seçimi highlight'ı transparan */
    &.dragging ::selection {
        background-color: var(--selection-bg-drag);
        color: var(--text-primary);
    }
    
    &.dragging ::-moz-selection {
        background-color: var(--selection-bg-drag);
        color: var(--text-primary);
    }
    -webkit-transition: -webkit-transform 0.1s ease;
    -moz-transition: -moz-transform 0.1s ease;
    -o-transition: -o-transform 0.1s ease;
    transition: transform 0.1s ease;
}

/* .main-content:active kuralı kaldırıldı - buton tıklamayı engelliyordu */

@-webkit-keyframes slideUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Logo ve Başlık
   ======================================== */
.logo-container {
    margin-bottom: 2rem;
}

.logo {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: pulse 2s infinite;
}

.logo i {
    font-size: 2rem;
    color: #ffffff;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.main-title {
    margin-bottom: 1.5rem;
    position: relative;
}

.title-text {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--text-primary);
    margin: 0 auto;
    border-radius: 2px;
    animation: expandWidth 1s ease-out 1s both;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

/* ========================================
   Açıklama ve Progress Bar
   ======================================== */
.main-description {
    font-size: 1.2rem;
    color: var(--text-primary) !important;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.progress-container {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: -webkit-linear-gradient(90deg, 
        #667eea 0%, 
        #764ba2 50%, 
        #667eea 100%);
    background: -moz-linear-gradient(90deg, 
        #667eea 0%, 
        #764ba2 50%, 
        #667eea 100%);
    background: -o-linear-gradient(90deg, 
        #667eea 0%, 
        #764ba2 50%, 
        #667eea 100%);
    background: linear-gradient(90deg, 
        #667eea 0%, 
        #764ba2 50%, 
        #667eea 100%);
    -webkit-background-size: 200% 100%;
    -moz-background-size: 200% 100%;
    -o-background-size: 200% 100%;
    background-size: 200% 100%;
    border-radius: 4px;
    width: 0;
    animation: progressFill 2.5s ease-out 1.5s both, progressGradient 2s linear infinite;
}

@-webkit-keyframes progressGradient {
    0% {
        background-position: -200% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@-moz-keyframes progressGradient {
    0% {
        background-position: -200% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@keyframes progressGradient {
    0% {
        background-position: -200% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@keyframes progressFill {
    0% {
        width: 0%;
    }
    100% {
        width: 75%;
    }
}

.progress-text {
    color: var(--text-primary) !important;
    font-size: 0.9rem;
}

/* ========================================
   Özellikler Grid
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1.6s both;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    background: rgba(74, 85, 104, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-primary);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(74, 85, 104, 0.3);
}

.feature-item i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
    display: block;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-primary) !important;
    font-size: 0.9rem;
}

/* ========================================
   İletişim Bilgileri
   ======================================== */
.contact-info {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1.8s both;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #764ba2;
}

.contact-link i {
    font-size: 1.2rem;
}

.contact-link:hover i.fa-youtube {
    color: #764ba2;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    animation: fadeInUp 1s ease-out 1.8s both;
    padding: 0.5rem 0;
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   404 Sayfası Stilleri
   ======================================== */
.error-container {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.error-icon {
    font-size: 6rem;
    color: #ff6b6b;
    margin-bottom: 2rem;
    animation: bounce 2s infinite;
}

.error-code {
    font-size: 8rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    line-height: 1;
}

.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.error-description {
    font-size: 1.2rem;
    color: var(--text-primary) !important;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.error-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #667eea;
    color: var(--text-primary);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.error-button:hover {
    background: #5a67d8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.error-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.error-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.countdown {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text-primary) !important;
}

.countdown-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 1rem;
    overflow: hidden;
}

.countdown-bar {
    height: 100%;
    background: var(--text-primary);
    border-radius: 2px;
    width: 100%;
    animation: countdownProgress 15s linear forwards;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

@keyframes countdownProgress {
    from { width: 100%; }
    to { width: 0%; }
}

/* ========================================
   Discord Sayfası Stilleri
   ======================================== */
.discord-redirect {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.discord-icon {
    font-size: 4rem;
    color: #5865F2;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.discord-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.discord-description {
    font-size: 1.2rem;
    color: var(--text-primary) !important;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.discord-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #5865F2;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.discord-button:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
}

.discord-button i {
    font-size: 1.3rem;
}

/* ========================================
   Responsive Tasarım
   ======================================== */
@media (max-width: 768px) {
    .maintenance-container {
        padding: 1rem;
    }
    
    .language-switcher {
        top: 1rem;
        right: 1rem;
    }
    
    .lang-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .main-content {
        max-width: 90%;
        min-width: 300px;
        padding: 2rem 1.5rem;
    }
    
    .title-text {
        font-size: 2.5rem;
    }
    
    .main-description {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .error-code {
        font-size: 6rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .error-description {
        font-size: 1rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .discord-title {
        font-size: 2rem;
    }
    
    .discord-description {
        font-size: 1rem;
    }
    
    .discord-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .title-text {
        font-size: 2rem;
    }
    
    .main-description {
        font-size: 1rem;
    }
}

/* ========================================
   Genel Yardımcı Sınıflar
   ======================================== */
.text-center {
    text-align: center;
}

.text-white {
    color: var(--text-primary);
}

.text-gray {
    color: var(--text-secondary);
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.rounded { border-radius: 8px; }
.rounded-lg { border-radius: 12px; }

.shadow { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); }

.transition { transition: all 0.3s ease; }

.hover-scale:hover { transform: scale(1.05); }
.hover-lift:hover { transform: translateY(-2px); }

/* ========================================
   Loading Animation
   ======================================== */
@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* ========================================
   Accessibility
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   Scroll to Top Button
   ======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.9);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: rgba(102, 126, 234, 1);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.scroll-to-top i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-2px);
}

/* ========================================
   Privacy Policy Styles
   ======================================== */
.privacy-policy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.7;
    color: var(--text-primary) !important;
}

.privacy-policy-content * {
    color: var(--text-primary) !important;
}

.privacy-policy-content a {
    color: #667eea !important;
}

.privacy-policy-content a:hover {
    color: #764ba2 !important;
}

.back-button-container {
    margin-bottom: 2rem;
    text-align: left;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(102, 126, 234, 0.2);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 8px;
    color: #667eea;
    padding: 0.8rem 1.2rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

.back-button:hover {
    background: rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
    color: #764ba2;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.back-button i {
    font-size: 1rem;
}

.privacy-policy-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary) !important;
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--text-secondary) !important;
    font-style: italic;
    margin-bottom: 3rem;
}

.privacy-section {
    margin-bottom: 2.5rem;
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
    padding-bottom: 0.5rem;
}

.privacy-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.privacy-section p {
    color: var(--text-primary) !important;
    margin-bottom: 1rem;
}

.privacy-section ul {
    color: var(--text-primary) !important;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
}

.privacy-section a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.privacy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.privacy-footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .privacy-policy-content {
        padding: 0 1rem;
    }
    
    .privacy-policy-content h1 {
        font-size: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-section h3 {
        font-size: 1.1rem;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .bg-animation,
    .floating-shapes {
        display: none;
    }
    
    .main-content {
        background: white;
        box-shadow: none;
    }
    
    .scroll-to-top {
        display: none;
    }
}

/* ========================================
   Redirect Page Styles
   ======================================== */
.redirect-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 0 auto;
}

.redirect-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.redirect-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.redirect-message {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--text-primary);
}

.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* ===== INTRO PAGE STYLES (Live Reload Test) ===== */

.intro-body {
    background: var(--bg-primary);
    background-image: url('/assets/images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0;
    padding: 0;
}

.intro-layout {
    display: flex;
    gap: 1.5rem;
    max-width: 1800px;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 10;
    height: 100vh;
    width: 100%;
    align-items: stretch;
    justify-content: center;
    transform-origin: center center; /* GLOBAL SCALE DOWN İÇİN MERKEZ NOKTASI */
}

.intro-left {
    flex: 1;
    max-width: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    padding-left: 2rem;
}

.intro-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: clamp(0.3rem, 1vw, 0.5rem);
    height: 100%;
    justify-content: space-between;
    align-items: stretch;
    min-height: 0;
    overflow: hidden;
}

/* Hub Section */
.hub-section {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: clamp(0.5rem, 1.5vw, 1rem);
    margin: 0;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s; /* DİĞER CONTAINER'LARLA AYNI ANİMASYON */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 0;
    overflow: hidden; /* İÇERİK CONTAINER DIŞINA ÇIKMASIN */
}

/* Hub Content Wrappers */
.hub-top-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 200px; /* MİNİMUM YÜKSEKLİK KORU */
    overflow: visible;
    gap: clamp(0.5rem, 1vw, 1rem);
    padding: 0; /* PADDING KALDIRILDI */
}

.hub-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    flex-shrink: 0;
    min-height: 120px; /* MİNİMUM YÜKSEKLİK KORU */
    padding: 0; /* PADDING KALDIRILDI */
}

/* Hub section hover kaldırıldı - diğer container'lar buton olduğu için onların hover'ı kalacak */

.hub-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0; /* MARGIN KALDIRILDI */
    flex-shrink: 0; /* LOGO BOYUTU KORUNSUN */
}

.hub-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hub-logo-icon {
    font-size: 2.5rem;
    color: #667eea;
    transition: transform 0.3s ease;
}

.hub-logo-icon:hover {
    transform: scale(1.01);
    transition: transform 0.3s ease;
}

.logo-image {
    width: clamp(120px, 15vw, 280px);
    height: clamp(120px, 15vw, 280px);
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: none;
    transition: none;
}

.hub-description {
    font-size: clamp(0.8rem, 2.5vw, 1.4rem); /* RESPONSIVE FONT - ÖLÇEK UYUMLU */
    color: var(--text-primary);
    line-height: 1.4;
    max-width: 90%;
    margin: 0 auto; /* SADECE YATAY MARGIN */
    opacity: 0.9;
    flex-shrink: 0; /* YAZI BOYUTU KORUNSUN */
}

.hub-description-second {
    font-size: clamp(0.8rem, 2.5vw, 1.4rem); /* RESPONSIVE FONT - ÖLÇEK UYUMLU */
    color: var(--text-primary);
    line-height: 1.4;
    max-width: 90%;
    margin: 0 auto; /* SADECE YATAY MARGIN */
    opacity: 0.9;
    flex-shrink: 0; /* YAZI BOYUTU KORUNSUN */
}

/* Contact Section - Intro Page */
.hub-section .contact-info {
    margin: 0; /* MARGIN KALDIRILDI */
    text-align: center;
    transition: none !important;
    animation: none !important;
    flex-shrink: 0; /* CONTACT BOYUTU KORUNSUN */
}

.hub-section .contact-info h3 {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--text-primary);
    margin-bottom: clamp(0.8rem, 2vw, 1.5rem);
    font-weight: 600;
    transition: none !important;
    animation: none !important;
}

.hub-section .contact-links {
    display: flex;
    flex-wrap: nowrap; /* 4'LÜ YAN YANA KORU - ALTA KAYMASIN */
    gap: clamp(0.5rem, 1.5vw, 1rem);
    justify-content: center;
    align-items: center;
    transition: none !important;
    animation: none !important;
    flex-shrink: 0; /* CONTACT LINKS BOYUTU KORUNSUN */
    margin: 0; /* MARGIN KALDIRILDI */
}

.hub-section .contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(0.8rem, 2vw, 1.25rem);
    background: rgba(255, 255, 255, 0.05); /* HAFİF TRANSPARAN ARKA PLAN */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    font-weight: 500;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease; /* HOVER İÇİN TRANSITION */
    animation: none !important;
    flex-shrink: 1; /* 4'LÜ YAN YANA KORU - SIKIŞTIR */
    min-width: 0; /* 4'LÜ YAN YANA KORU - MİNİMUM GENİŞLİK */
}

.hub-section .contact-link:hover {
    background: rgba(255, 255, 255, 0.1) !important; /* HOVER'DA DAHA AÇIK TRANSPARAN */
    border-color: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px) !important; /* HOVER'DA YUKARI KAYDIR */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important; /* HOVER'DA DAHA GÜÇLÜ GÖLGE */
    transition: all 0.3s ease !important;
    animation: none !important;
}

/* Light mode specific hover effects */
[data-theme="light"] .artworks-section:hover,
[data-theme="light"] .design-subsection:hover,
[data-theme="light"] .software-subsection:hover {
    background: rgba(255, 255, 255, 0.4) !important;
    border-color: rgba(0, 0, 0, 0.3) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3) !important;
}

/* Dark mode specific hover effects */
[data-theme="dark"] .artworks-section:hover,
[data-theme="dark"] .design-subsection:hover,
[data-theme="dark"] .software-subsection:hover {
    background: rgba(0, 0, 0, 0.77) !important; /* DARK MODE HOVER - ALPHA 0.77 */
    border-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5) !important;
}

.hub-section .contact-link i {
    font-size: 1.1rem;
    color: #667eea;
    transition: all 0.3s ease; /* HOVER İÇİN TRANSITION */
    animation: none !important;
}

/* Tüm ikonlar için genel hover efekti */
.hub-section .contact-link:hover i {
    color: #ffffff !important; /* HOVER'DA BEYAZ - TÜM İKONLAR AYNI */
    transform: scale(1.05) !important; /* HOVER'DA HAFİF BÜYÜT */
}

/* Footer linki için özel stil */
.footer-text a {
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-text a:hover {
    color: #ffffff;
    text-decoration: underline;
    transform: scale(1.02);
}


/* Intro Footer */
.intro-footer {
    margin-top: clamp(0.3rem, 0.8vw, 0.5rem);
    padding-top: clamp(0.5rem, 1.5vw, 1rem);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 1.5vw, 1rem);
    align-items: center;
}

.footer-text {
    color: var(--text-secondary);
    font-size: clamp(0.7rem, 1.8vw, 0.9rem);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: clamp(0.8rem, 2vw, 1.5rem);
    align-items: center;
}

.footer-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: clamp(0.7rem, 1.8vw, 0.9rem);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #667eea;
    text-decoration: underline;
}

/* Artworks Section */
.artworks-section {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: clamp(0.8rem, 2vw, 1.5rem) clamp(0.5rem, 1.5vw, 1rem);
    margin: 0;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 0;
    overflow: hidden;
    align-self: stretch;
}

.artworks-section:hover {
    transform: scale(1.02);
    background: var(--hover-bg) !important;
    border-color: var(--hover-border) !important;
    box-shadow: 0 12px 40px var(--hover-shadow) !important;
    transition: transform 0.3s ease !important;
}

/* Design & Software Section */
.design-software-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(0.3rem, 1vw, 1rem);
    margin-bottom: 0;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.design-subsection,
.software-subsection {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: clamp(0.8rem, 2vw, 1.5rem) clamp(0.5rem, 1.5vw, 1rem);
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 0;
    overflow: hidden;
    align-self: stretch;
    position: relative; /* HOVER AÇIKLAMA YAZISI İÇİN */
}

/* Software subsection as link */
.software-subsection {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.software-subsection:hover {
    text-decoration: none;
    color: inherit;
}

.design-subsection:hover,
.software-subsection:hover {
    transform: scale(1.02);
    background: var(--hover-bg) !important;
    border-color: var(--hover-border) !important;
    box-shadow: 0 12px 40px var(--hover-shadow) !important;
    transition: transform 0.3s ease !important;
}



.section-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.section-icon {
    font-size: 2rem;
    color: #667eea;
    transition: transform 0.3s ease;
}

.section-icon:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.section-icon .logo-image {
    width: clamp(180px, 12vw, 440px);
    height: clamp(180px, 12vw, 440px);
}

/* Maintenance Message */
.maintenance-message {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 193, 7, 0.95);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
    z-index: 10;
    max-width: 300px;
}

.maintenance-message .warning-icon {
    color: #856404;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.maintenance-message .maintenance-text {
    color: #856404;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

/* Show maintenance message on hover */
.artworks-section:hover .maintenance-message,
.design-subsection:hover .maintenance-message {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

/* Software hover'da bakımda yazısını gizle */
.software-subsection:hover .maintenance-message {
    opacity: 0; /* SADECE SOFTWARE'DA BAKIMDA YAZISINI GİZLE */
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px); 
}

/* Software hover açıklama yazısı - DİL UYUMLU */
.software-subsection:hover::after {
    content: attr(data-description-en);
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    max-width: 85%;
    line-height: 1.3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 100;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
}

/* Türkçe dil desteği - HTML lang attribute kullanarak */
html[lang="tr"] .software-subsection:hover::after {
    content: attr(data-description-tr); 
}

.section-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.section-icon:nth-child(3) {
    animation-delay: 1s;
}

/* Navigation Links */
.intro-navigation {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--text-primary);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.nav-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    background: var(--text-primary);
}

.nav-link i {
    font-size: 1.2rem;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large screens (4K and above) */
@media (min-width: 2560px) {
    .logo-image {
        width: clamp(200px, 20vw, 540px);
        height: clamp(200px, 20vw, 540px);
    }
    
    .section-icon .logo-image {
        width: clamp(300px, 18vw, 900px);
        height: clamp(300px, 18vw, 900px);
    }
    
    .hub-section {
        padding: 5rem 3rem;
    }
    
    .artworks-section,
    .design-subsection,
    .software-subsection {
        padding: 4rem 3rem;
    }
}

/* 21:9 Ultrawide Monitors (3440x1440, 2560x1080) */
@media (min-width: 2560px) and (max-width: 3440px) and (min-aspect-ratio: 21/9) {
    .intro-layout {
        max-width: 2200px;
        gap: 3rem;
        padding: 2rem;
    }
    
    .logo-image {
        width: clamp(150px, 16vw, 320px);
        height: clamp(150px, 16vw, 320px);
    }
    
    .section-icon .logo-image {
        width: clamp(200px, 14vw, 520px);
        height: clamp(200px, 14vw, 520px);
    }
    
    .hub-section {
        padding: 2.5rem 2rem;
    }
    
    .artworks-section,
    .design-subsection,
    .software-subsection {
        padding: 2rem 1.5rem;
    }
}

/* 21:9 Ultrawide Monitors (2560x1080) */
@media (min-width: 2560px) and (max-width: 2560px) and (min-aspect-ratio: 21/9) {
    .intro-layout {
        max-width: 2000px;
        gap: 2.5rem;
        padding: 1.5rem;
    }
    
    .logo-image {
        width: clamp(140px, 15vw, 300px);
        height: clamp(140px, 15vw, 300px);
    }
    
    .section-icon .logo-image {
        width: clamp(180px, 13vw, 480px);
        height: clamp(180px, 13vw, 480px);
    }
    
    .hub-section {
        padding: 2rem 1.5rem;
    }
    
    .artworks-section,
    .design-subsection,
    .software-subsection {
        padding: 1.5rem 1rem;
    }
}

/* 16:10 Monitors (1920x1200, 1680x1050) */
@media (min-width: 1680px) and (max-width: 1920px) and (min-aspect-ratio: 16/10) {
    .intro-layout {
        max-width: 2000px;
        gap: 2.5rem;
        padding: 2rem;
    }
    
    .logo-image {
        width: clamp(140px, 15vw, 300px);
        height: clamp(140px, 15vw, 300px);
    }
    
    .section-icon .logo-image {
        width: clamp(180px, 13vw, 480px);
        height: clamp(180px, 13vw, 480px);
    }
    
    .hub-section {
        padding: 2.5rem 2rem;
    }
    
    .artworks-section,
    .design-subsection,
    .software-subsection {
        padding: 2rem 1.5rem;
    }
}

/* 16:10 Monitors (1920x1200) */
@media (min-width: 1920px) and (max-width: 1920px) and (min-aspect-ratio: 16/10) {
    .intro-layout {
        max-width: 1900px;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .logo-image {
        width: clamp(130px, 14vw, 280px);
        height: clamp(130px, 14vw, 280px);
    }
    
    .section-icon .logo-image {
        width: clamp(170px, 12vw, 440px);
        height: clamp(170px, 12vw, 440px);
    }
    
    .hub-section {
        padding: 2rem 1.5rem;
    }
    
    .artworks-section,
    .design-subsection,
    .software-subsection {
        padding: 1.5rem 1rem;
    }
}

/* Global Scale Down System - TÜM SİTE YÜZDE OLARAK KÜÇÜLTÜLÜR */
@media (max-height: 800px) {
    .intro-layout {
        transform: scale(0.95) !important; /* YÜKSEKLİK KISITLI OLDUĞUNDA TÜM SİTE SCALE DOWN */
        transform-origin: center center !important;
    }
}

@media (max-height: 700px) {
    .intro-layout {
        transform: scale(0.9) !important; /* DAHA KÜÇÜK YÜKSEKLİKTE TÜM SİTE SCALE DOWN */
        transform-origin: center center !important;
    }
}

@media (max-height: 600px) {
    .intro-layout {
        transform: scale(0.85) !important; /* ÇOK KÜÇÜK YÜKSEKLİKTE TÜM SİTE SCALE DOWN */
        transform-origin: center center !important;
    }
}

@media (max-height: 500px) {
    .intro-layout {
        transform: scale(0.8) !important; /* ÇOK KÜÇÜK YÜKSEKLİKTE TÜM SİTE SCALE DOWN */
        transform-origin: center center !important;
    }
}

@media (max-height: 400px) {
    .intro-layout {
        transform: scale(0.75) !important; /* MİNİMUM YÜKSEKLİKTE TÜM SİTE SCALE DOWN */
        transform-origin: center center !important;
    }
}

/* Large desktop screens */
@media (min-width: 1920px) and (max-width: 2559px) {
    .logo-image {
        width: clamp(200px, 18vw, 900px);
        height: clamp(200px, 18vw, 900px);
    }
    
    .section-icon .logo-image {
        width: clamp(180px, 15vw, 720px);
        height: clamp(180px, 15vw, 720px);
    }
}

/* Standard desktop screens */
@media (min-width: 1200px) and (max-width: 1919px) {
    .logo-image {
        width: clamp(150px, 16vw, 560px);
        height: clamp(150px, 16vw, 560px);
    }
    
    .section-icon .logo-image {
        width: clamp(140px, 14vw, 440px);
        height: clamp(140px, 14vw, 440px);
    }
}

/* Tablet screens */
@media (min-width: 769px) and (max-width: 1199px) {
    .logo-image {
        width: clamp(120px, 18vw, 600px);
        height: clamp(120px, 18vw, 600px);
    }
    
    .section-icon .logo-image {
        width: clamp(100px, 15vw, 480px);
        height: clamp(100px, 15vw, 480px);
    }
    
    .hub-section {
        padding: 3rem 2rem;
    }
    
    .artworks-section,
    .design-subsection,
    .software-subsection {
        padding: 2.5rem 2rem;
    }
}

/* Mobile screens */
@media (max-width: 768px) {
    /* Software container'ı zorla görünür yap - EN ÜSTTE - SİLİNDİ */
    /* .software-subsection {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: 100vh !important;
        width: 100% !important;
        background: red !important;
        position: relative !important;
        z-index: 999 !important;
        margin: 0 !important;
        padding: 1rem !important;
        border: 3px solid yellow !important;
    } */
    .intro-layout {
        flex-direction: column;
        padding: 0;
        gap: 0;
        height: 300vh; /* 3 container x 100vh - ALT ALTA */
        max-width: 100%;
        overflow-y: auto;
        scroll-behavior: auto; /* SCROLL TOP İÇİN */
    }
    
    .intro-left {
        flex: none;
        max-width: 100%;
        height: 100vh;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        justify-content: flex-start; /* HUB LOGOSU YUKARI TAŞI */
        align-items: center;
        padding-top: 2rem; /* HUB LOGOSU YUKARI TAŞI */
    }
    
    .intro-right {
        flex: none;
        max-width: 100%;
        height: 200vh; /* 2 container x 100vh - ALT ALTA */
        gap: 0;
        justify-content: flex-start;
        padding: 0;
        flex-direction: column; /* ALT ALTA - DİKEY */
        overflow-x: hidden; /* YATAY KAYDIRMA KAPALI */
        overflow-y: auto; /* DİKEY KAYDIRMA AÇIK */
        scroll-behavior: smooth; /* YUMUŞAK KAYDIRMA */
        -webkit-overflow-scrolling: touch; /* iOS için smooth scroll */
    }
    
    .hub-logo {
        flex-direction: column;
        gap: 0.1rem;
        margin-bottom: 0.2rem;
    }
    
    /* Mobile text sizes - more compact */
    .hub-description,
    .hub-description-second {
        font-size: clamp(2.2rem, 8vw, 3.5rem) !important; /* MOBİLDE ÇOK BÜYÜK YAZI */
        line-height: 1.2;
        max-width: 90%; /* WRAP İÇİN DAHA GENİŞ */
        margin: 0 auto clamp(1.2rem, 3vw, 2rem) auto;
        text-align: center;
        word-wrap: break-word; /* WRAP İÇİN */
        hyphens: auto; /* WRAP İÇİN */
    }
    
    .artworks-section {
        flex: none;
        height: 100vh;
        min-height: 0;
        overflow: hidden;
        width: 100% !important; /* ALT ALTA - TAM GENİŞLİK */
        min-width: 100% !important; /* ALT ALTA - TAM GENİŞLİK */
    } 
    
    .design-software-section {
        display: grid !important; /* GRID YAPISINA GERİ DÖN */
        grid-template-columns: 1fr 1fr !important; /* 2 SÜTUN - YAN YANA */
        grid-template-rows: 1fr !important; /* 1 SATIR - YAN YANA */
        gap: 0.5rem; /* YAN YANA İÇİN GAP */
        height: 100vh; /* 1 container x 100vh - YAN YANA */
        padding: 0;
        min-height: 0;
        overflow: hidden;
        width: 100% !important; /* YAN YANA - TAM GENİŞLİK */
        min-width: 100% !important; /* YAN YANA - TAM GENİŞLİK */
    }
    
    .design-subsection,
    .software-subsection {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        height: 100% !important; /* YAN YANA - TAM YÜKSEKLİK */
        min-height: 0 !important;
        overflow: hidden !important;
        width: 100% !important; /* YAN YANA - TAM GENİŞLİK */
        min-width: 0 !important; /* YAN YANA - FLEXIBLE GENİŞLİK */
        position: relative !important;
        z-index: 10 !important;
        background: var(--bg-secondary) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 15px !important;
    } 
    
    /* SOFTWARE CONTAINER - ESKİ FİX YÖNTEMİ */
    .software-subsection {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: 100% !important; /* GRID İÇİNDE TAM YÜKSEKLİK */
        width: 100% !important; /* ALT ALTA - TAM GENİŞLİK */
        min-width: 100% !important; /* ALT ALTA - TAM GENİŞLİK */
        background: var(--bg-secondary) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 15px !important;
        position: relative !important;
        z-index: 10 !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        margin: 0 !important;
        padding: 1rem !important;
        overflow: hidden !important;
        min-height: 0 !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
        box-sizing: border-box !important;
        flex: none !important; /* SLIDEABLE - SABİT GENİŞLİK */
    }
    
    .logo-image {
        width: clamp(180px, 45vw, 360px) !important;
        height: clamp(180px, 45vw, 360px) !important; 
    }
    
    .section-icon .logo-image {
        width: clamp(150px, 36vw, 300px) !important;
        height: clamp(150px, 36vw, 300px) !important;
    }
    
    .section-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
    }
    
    /* Hub logo - 2x bigger */
    .hub-logo-icon .logo-image {
        width: clamp(120px, 30vw, 240px) !important;
        height: clamp(120px, 30vw, 240px) !important;
    }
    
    .hub-section {
        padding: 1rem 0.5rem;
        margin: 0;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .artworks-section {
        padding: 1rem 0.5rem;
        margin: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100% !important; /* ALT ALTA - TAM GENİŞLİK */
        min-width: 100% !important; /* ALT ALTA - TAM GENİŞLİK */
        flex: none !important; /* 3'LÜ SLIDEABLE - SABİT GENİŞLİK */
    }
    
    .design-subsection,
    .software-subsection {
        padding: 1rem 0.5rem !important;
        margin: 0 !important;
        overflow: visible !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important; /* ALT ALTA - TAM GENİŞLİK */
        min-width: 100% !important; /* ALT ALTA - TAM GENİŞLİK */
        height: 100vh !important;
        position: relative !important;
        z-index: 10 !important;
        background: var(--bg-secondary) !important;
        flex: none !important; /* SLIDEABLE - SABİT GENİŞLİK */
    }
    
    /* Software container'ı zorla görünür yap - 2 - SLIDEABLE TASARIM */
    .software-subsection {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: 100vh !important;
        width: 100% !important; /* ALT ALTA - TAM GENİŞLİK */
        min-width: 100% !important; /* ALT ALTA - TAM GENİŞLİK */
        background: var(--bg-secondary) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 15px !important;
        flex: none !important; /* SLIDEABLE - SABİT GENİŞLİK */
    }
    
    .hub-section .contact-info {
        margin: clamp(0.1rem, 1vw, 0.3rem) 0;
        margin-top: clamp(0.2rem, 1.5vw, 0.4rem);
    }
    
    .hub-section .contact-info h3 {
        font-size: clamp(0.6rem, 3vw, 0.8rem) !important;
        margin-bottom: clamp(0.2rem, 1vw, 0.3rem);
    }
    
    .hub-section .contact-links {
        gap: 0.1rem;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        overflow: hidden;
    }
    
    .hub-section .contact-link {
        font-size: clamp(0.6rem, 3vw, 1rem) !important;
        padding: clamp(0.1rem, 1.6vw, 0.3rem) clamp(0.2rem, 3vw, 0.6rem);
        gap: 0.04rem;
        flex-shrink: 1;
        min-width: 0;
    }
    
    .hub-section .contact-link i {
        font-size: clamp(0.8rem, 4vw, 1.2rem) !important;
    }
    
    .intro-footer {
        margin-top: 0.2rem;
        padding-top: 0.2rem;
    }
    
    .footer-content {
        gap: 0.2rem;
    }
    
    .footer-text,
    .footer-link {
        font-size: clamp(0.5rem, 2.5vw, 0.7rem) !important;
    }
    
    .footer-links {
        gap: 0.3rem;
    }
    
    .maintenance-message {
        max-width: 250px;
        padding: 0.8rem 1rem;
        bottom: 0.5rem;
    }
    
    .maintenance-message .maintenance-text {
        font-size: 0.75rem;
    }
    
    .maintenance-message .warning-icon {
        font-size: 1rem;
    }
}

/* Small mobile screens */
@media (max-width: 480px) {
    .logo-image {
        width: clamp(150px, 60vw, 300px) !important;
        height: clamp(150px, 60vw, 300px) !important;
    }
    
    .section-icon .logo-image {
        width: clamp(120px, 54vw, 240px) !important;
        height: clamp(120px, 54vw, 240px) !important;
    }
    
    /* Hub logo - 2x bigger for small mobile */
    .hub-logo-icon .logo-image {
        width: clamp(100px, 40vw, 200px) !important;
        height: clamp(100px, 40vw, 200px) !important;
    }
    
    .hub-section {
        padding: 0.8rem 0.3rem;
    }
    
    .artworks-section {
        padding: 0.8rem 0.3rem;
    }
    
    .design-subsection,
    .software-subsection {
        padding: 0.8rem 0.3rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        height: 100vh !important;
        position: relative !important;
        z-index: 10 !important;
        background: var(--bg-secondary) !important;
    }
    
    /* SOFTWARE CONTAINER - WEBMASTER ULTIMATE FIX - 3 */
    .software-subsection {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: 100vh !important;
        width: 100% !important;
        background: red !important;
        border: 5px solid yellow !important;
        border-radius: 15px !important;
        position: relative !important;
        z-index: 9999 !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        margin: 0 !important;
        padding: 1rem !important;
        overflow: visible !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
        box-sizing: border-box !important;
    }
    
    .hub-description,
    .hub-description-second {
        font-size: clamp(0.6rem, 3vw, 0.9rem) !important;
        line-height: 1.2;
        margin: 0 auto clamp(0.05rem, 0.2vw, 0.1rem) auto;
    }
    
    .hub-section .contact-info {
        margin: clamp(0.1rem, 1vw, 0.3rem) 0;
        margin-top: clamp(0.1rem, 1vw, 0.2rem);
    }
    
    .hub-section .contact-info h3 {
        font-size: clamp(0.5rem, 2.5vw, 0.7rem) !important;
        margin-bottom: clamp(0.1rem, 0.5vw, 0.2rem);
    }
    
    .hub-section .contact-links {
        flex-direction: row;
        gap: 0.05rem;
        flex-wrap: nowrap;
        overflow: hidden;
    }
    
    .hub-section .contact-link {
        font-size: clamp(0.5rem, 2.4vw, 0.8rem) !important;
        padding: clamp(0.06rem, 1vw, 0.2rem) clamp(0.1rem, 2vw, 0.4rem);
        gap: 0.02rem;
        flex-shrink: 1;
        min-width: 0;
    }
    
    .hub-section .contact-link i {
        font-size: clamp(0.6rem, 3vw, 1rem) !important;
    }
    
    .footer-text,
    .footer-link {
        font-size: clamp(0.4rem, 2vw, 0.6rem) !important;
    }
}

/* SLIDEABLE TASARIM - EN SON KURAL - MOBİLDE SOFTWARE CONTAINER */
@media (max-width: 768px) {
    .software-subsection {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: 100% !important; /* GRID İÇİNDE TAM YÜKSEKLİK */
        width: 100% !important; /* YAN YANA - TAM GENİŞLİK */
        min-width: 0 !important; /* YAN YANA - FLEXIBLE GENİŞLİK */
        background: var(--bg-secondary) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 15px !important;
        position: relative !important;
        z-index: 10 !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        margin: 0 !important;
        padding: 1rem !important;
        overflow: hidden !important;
        min-height: 0 !important;
        max-height: 100% !important;
        box-sizing: border-box !important;
        transform: none !important;
        -webkit-transform: none !important;
        filter: none !important;
        -webkit-filter: none !important;
        clip: none !important;
        clip-path: none !important;
        mask: none !important;
        -webkit-mask: none !important;
        pointer-events: auto !important;
        user-select: auto !important;
        -webkit-user-select: auto !important;
        -moz-user-select: auto !important;
        -ms-user-select: auto !important;
        flex: none !important; /* SLIDEABLE - SABİT GENİŞLİK */
    }
}