/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Tutkulu Renkler Tema - Tutku.org */
    --primary: #E91E63;      /* Tutkulu Pembe (Pink) */
    --secondary: #FF5722;    /* Tutkulu Turuncu (Deep Orange) */
    --accent: #F50057;       /* Koyu Pembe */
    --success: #FF1744;      /* Parlak Kırmızı */
    --success-dark: #C2185B; /* Koyu Pembe */
    --success-light: #FF4081; /* Açık Pembe */
    --purple: #9C27B0;       /* Tutkulu Mor */
    --purple-dark: #7B1FA2;  /* Koyu Mor */
    --purple-light: #E1BEE7; /* Açık Mor */
    --dark: #000000;         /* Siyah */
    --darker: #1A0A0F;       /* Çok Koyu (hafif pembe tonlu) */
    --gray: #2D2D2D;         /* Koyu Gri */
    --light-gray: #FFF5F8;   /* Açık Pembe-Gri Arka Plan */
    --white: #FFFFFF;        /* Beyaz */
    --red: #E91E63;          /* Tutkulu Kırmızı-Pembe */
    --red-dark: #C2185B;     /* Koyu Pembe */
    --red-light: #FF4081;    /* Açık Pembe */
    --orange: #FF5722;       /* Tutkulu Turuncu */
    --orange-dark: #E64A19;  /* Koyu Turuncu */
    --orange-light: #FF8A65; /* Açık Turuncu */
    --text: #1A1A1A;         /* Koyu Metin */
    --text-dark: #000000;    /* Siyah Metin */
    --text-gray: #555555;    /* Gri Metin */
    --text-light: rgba(255, 255, 255, 0.95);
    --bg-white: #FFFFFF;
    --bg-black: #000000;
    --bg-pink: #FFF0F5;      /* Açık Pembe Arka Plan */
    --bg-orange: #FFF3E0;    /* Açık Turuncu Arka Plan */
    --bg-purple: #F3E5F5;    /* Açık Mor Arka Plan */
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    background: var(--bg-white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--primary);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    background: var(--bg-pink);
}

.logo i {
    font-size: 2.2rem;
    color: var(--primary);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.9; }
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.logo strong {
    color: var(--secondary);
    font-weight: 800;
}

.logo-domain {
    font-size: 0.6em;
    opacity: 0.95;
    font-weight: 500;
    color: var(--primary);
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3),
                0 2px 8px rgba(255, 87, 34, 0.2);
    overflow: hidden;
    display: inline-block;
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.nav a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.nav a:hover::before {
    width: 300px;
    height: 300px;
}

.nav a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
    opacity: 1;
}

.nav a:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.5),
                0 4px 15px rgba(255, 87, 34, 0.4),
                0 0 20px rgba(156, 39, 176, 0.3);
    color: var(--white);
    background: linear-gradient(135deg, var(--success-light) 0%, var(--primary) 50%, var(--secondary) 100%);
}

.nav a.active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4),
                0 3px 10px rgba(255, 87, 34, 0.3);
    background: linear-gradient(135deg, var(--purple) 0%, var(--primary) 50%, var(--secondary) 100%);
    color: var(--white);
}

.nav a span {
    position: relative;
    z-index: 1;
}

.mobile-menu-toggle {
    display: none;
    background: var(--bg-white);
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--purple) 100%);
    padding: 6rem 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--bg-white);
    color: var(--primary);
    border: 2px solid var(--bg-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(233, 30, 99, 0.5);
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.main-content {
    flex: 1;
}

/* ===== SOHBET SECTION ===== */
.sohbet-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.sohbet-box {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.sohbet-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.08) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.sohbet-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    font-weight: 800;
}

.sohbet-title i {
    color: var(--secondary);
    animation: pulse 2s ease infinite;
}

.sohbet-intro {
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.sohbet-intro h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.sohbet-intro p {
    color: var(--text-gray);
    line-height: 1.8;
}

.login-form {
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--text-dark);
    min-height: 44px;
    touch-action: manipulation;
    -webkit-appearance: none;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.2);
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-group input::placeholder {
    color: var(--text-gray);
}

.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--text-dark);
    resize: vertical;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.2);
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-group textarea::placeholder {
    color: var(--text-gray);
}

.info-text {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.info-text p {
    color: var(--text-gray);
}

/* ===== INFO SECTION ===== */
.info-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-pink) 0%, var(--bg-white) 100%);
    color: var(--text-dark);
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.info-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
    font-weight: 800;
}

.info-content p {
    color: var(--text-gray);
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.8;
}

.info-section .info-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray);
    font-weight: 400;
}

.info-section .info-text p {
    color: var(--text-gray);
}

/* General text styles for better readability */
p, span, div, li {
    color: var(--text-dark);
}

p, li {
    font-weight: 500;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
}

.info-section h1,
.info-section h2,
.info-section h3,
.info-section h4,
.info-section h5,
.info-section h6 {
    color: var(--text-dark) !important;
}

.quote-section h1,
.quote-section h2,
.quote-section h3 {
    color: var(--white) !important;
}

.footer p,
.footer span,
.footer div,
.footer li,
.footer h4 {
    color: var(--text-light) !important;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--purple) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.4);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(233, 30, 99, 0.6);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.feature-description {
    color: var(--text-gray);
    line-height: 1.8;
    font-weight: 400;
}

/* ===== QUOTE SECTION ===== */
.quote-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--purple) 100%);
    color: var(--white);
}

.quote-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.quote-text {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-black);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    margin-top: auto;
    border-top: 3px solid var(--primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    text-align: left;
}

.footer-title {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.footer-contact a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 2.5rem 2rem;
    border-top: 3px solid rgba(233, 30, 99, 0.3);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--purple) 100%);
    color: var(--white);
    margin-top: 2rem;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 20px rgba(233, 30, 99, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-bottom-right {
    text-align: right;
    flex: 1;
    min-width: 200px;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.footer-server-owner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
                inset 0 2px 10px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.footer-server-owner:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3),
                inset 0 2px 10px rgba(255, 255, 255, 0.2);
}

.footer-server-owner i {
    font-size: 1.3rem;
    color: #FFD700;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
    animation: crownPulse 2s ease infinite;
}

@keyframes crownPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
    }
}

.server-owner-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.server-owner-name {
    font-weight: 800;
    font-size: 1.05rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: gradientText 3s ease infinite;
    text-shadow: none;
    display: inline-block;
    margin-left: 0.25rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-server-owner:hover .server-owner-name {
    animation: rotate360 0.8s ease, gradientText 3s ease infinite;
}

@keyframes rotate360 {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(195deg) scale(1.1);
    }
    100% {
        transform: rotate(390deg) scale(1);
    }
}

.footer-bottom-right p,
.footer-bottom-right p,
.footer-bottom p,
.footer-bottom a {
    position: relative;
    z-index: 1;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.footer-bottom-right {
    position: relative;
    z-index: 1;
}

.footer-bottom a:hover {
    color: var(--white);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.design-credit {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    font-style: italic;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.design-credit.show {
    opacity: 1;
}

.design-credit-name {
    background: linear-gradient(135deg, #E91E63 0%, #FF5722 25%, #9C27B0 50%, #E91E63 75%, #FF5722 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: gradientText 3s ease infinite;
    font-weight: 800;
}

.design-credit-text {
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    font-style: italic;
    color: var(--white);
    transition: all 0.5s ease;
    animation: fadeIn 1s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.design-credit-text strong {
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.95) !important;
    background-clip: unset !important;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3), 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.design-credit-text a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.design-credit-text a:hover strong {
    color: rgba(255, 255, 255, 1) !important;
    transform: scale(1.05);
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.5), 2px 2px 5px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes gradientText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ===== ADMIN CARDS ===== */
.admin-category-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.admin-category-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.admin-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2) !important;
}

.admin-name {
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.admin-name:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        border-top: 2px solid var(--primary);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        display: none;
        border-top: 2px solid var(--primary);
    }

    .nav.mobile-active {
        display: flex;
    }

    .nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .nav a {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1.5rem;
        border-radius: 50px;
        display: block;
    }

    .nav a:hover {
        transform: translateY(-3px) scale(1.02);
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .sohbet-box {
        padding: 2rem 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .admin-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-bottom-right {
        text-align: center;
    }

    .footer-server-owner {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .footer-server-owner i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .logo {
        font-size: 1.3rem !important;
        padding: 0.4rem 0.8rem !important;
        gap: 0.5rem !important;
        min-height: 44px;
    }

    .logo i {
        font-size: 1.3rem !important;
    }
    
    .logo-domain {
        font-size: 0.6em !important;
    }

    .section-title {
        font-size: 1.5rem !important;
    }

    .sohbet-title {
        font-size: 1.75rem;
    }

    .nav a {
        min-height: 48px;
        min-width: 100%;
        padding: 0.875rem 1.25rem;
    }

    .mobile-menu-toggle {
        min-height: 44px;
        min-width: 44px;
    }

    .btn {
        min-height: 48px;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .admin-name {
        min-height: 44px;
        padding: 0.875rem 1.25rem !important;
        font-size: 0.9rem;
    }

    .admin-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .admin-category-card {
        padding: 1.5rem !important;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .mobile-menu-toggle,
    .hero-buttons {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        background: white;
        color: black;
        page-break-after: avoid;
    }
}

/* Accessibility Improvements */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Skip to content link for screen readers */
.skip-to-content {
    position: absolute;
    left: -9999px;
    z-index: 999;
}

.skip-to-content:focus {
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
}

