/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #3E525F;
    background-color: #ECECEC;
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #3E525F;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
    width: auto;
}

.brand-text {
    color: #ECECEC;
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ECECEC;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ECECEC;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3E525F 0%, #2a3a45 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ECECEC;
    position: relative;
    overflow: hidden;
}

.hero::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ECECEC" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: #ECECEC;
    color: #3E525F;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #3E525F;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #3E525F;
    border-radius: 2px;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.gallery-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gallery-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #ECECEC;
    padding: 2rem;
    text-align: center;
}

.slide-caption h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.slide-caption p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.gallery-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.prev-btn, .next-btn {
    background-color: rgba(62, 82, 95, 0.8);
    color: #ECECEC;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover, .next-btn:hover {
    background-color: #3E525F;
    transform: scale(1.1);
}

.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(236, 236, 236, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #ECECEC;
    transform: scale(1.2);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #ECECEC;
}

/* Management Section */
.management-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #3E525F;
    opacity: 0.8;
    margin-bottom: 4rem;
    font-weight: 400;
}

.management-content {
    max-width: 1000px;
    margin: 0 auto;
}

.management-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #3E525F;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #3E525F;
    border-radius: 2px;
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.management-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    border: 2px solid transparent;
    text-decoration: none;
    color: inherit;
    display: block;
}

.management-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.card-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    flex-shrink: 0;
}

.card-info {
    flex: 1;
}

.card-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #3E525F;
    margin-bottom: 0.5rem;
}

.card-role {
    color: #3E525F;
    opacity: 0.7;
    font-size: 1rem;
    font-weight: 500;
}

/* Owner Card Styles */
.owner-card {
    border-color: #FFD700;
    background: linear-gradient(135deg, #ffffff 0%, #fffef7 100%);
}

.owner-card:hover {
    border-color: #FFD700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.owner-card .card-avatar {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #3E525F;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.owner-card .card-name {
    color: #B8860B;
    font-weight: 700;
}

.owner-card .card-role {
    color: #B8860B;
    font-weight: 600;
}

/* CEO Card Styles */
.ceo-card {
    border-color: #4A90E2;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

.ceo-card:hover {
    border-color: #4A90E2;
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.2);
}

.ceo-card .card-avatar {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.ceo-card .card-name {
    color: #2E5BBA;
    font-weight: 700;
}

.ceo-card .card-role {
    color: #2E5BBA;
    font-weight: 600;
}

/* Event Manager Card Styles */
.event-manager-card {
    border-color: #E74C3C;
    background: linear-gradient(135deg, #ffffff 0%, #fff8f8 100%);
}

.event-manager-card:hover {
    border-color: #E74C3C;
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.2);
}

.event-manager-card .card-avatar {
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.event-manager-card .card-name {
    color: #A93226;
    font-weight: 700;
}

.event-manager-card .card-role {
    color: #A93226;
    font-weight: 600;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #3E525F;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #3E525F;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #3E525F;
}

.feature p {
    color: #3E525F;
    opacity: 0.8;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #3E525F;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #3E525F;
}

.contact-details {
    background-color: #ECECEC;
    padding: 2rem;
    border-radius: 15px;
}

.contact-item {
    margin-bottom: 1rem;
}

.contact-item strong {
    color: #3E525F;
    font-weight: 600;
}

.contact-item a {
    color: #3E525F;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.contact-social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 12px;
    background-color: #ECECEC;
    border-radius: 20px;
    color: #3E525F;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-social-link.discord:hover {
    background-color: #5865F2;
    color: #ffffff;
}

.contact-social-link.instagram:hover {
    background-color: #E4405F;
    color: #ffffff;
}

.contact-social-link.youtube:hover {
    background-color: #FF0000;
    color: #ffffff;
}

.contact-social-link.tiktok:hover {
    background-color: #000000;
    color: #ffffff;
}

.contact-social-link.truckersmp:hover {
    background-color: #FF6B35;
    color: #ffffff;
}

/* Form Styles */
.contact-form {
    background-color: #ECECEC;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #3E525F;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #d0d0d0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3E525F;
}

.submit-btn {
    width: 100%;
    background-color: #3E525F;
    color: #ECECEC;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #2a3a45;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background-color: #3E525F;
    color: #ECECEC;
    padding: 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    height: 30px;
    width: auto;
}

.footer-social h4 {
    color: #ECECEC;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 12px;
    background-color: rgba(236, 236, 236, 0.1);
    border-radius: 20px;
    color: #ECECEC;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    background-color: rgba(236, 236, 236, 0.2);
    transform: translateY(-2px);
}

.social-link.discord:hover {
    background-color: #5865F2;
}

.social-link.instagram:hover {
    background-color: #E4405F;
}

.social-link.youtube:hover {
    background-color: #FF0000;
}

.social-link.tiktok:hover {
    background-color: #000000;
}

.social-link.truckersmp:hover {
    background-color: #FF6B35;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav {
        padding: 1rem 1.5rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .gallery-slider {
        height: 450px;
    }
    
    .contact-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .language-toggle {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .language-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-width: 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .management-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .management-card {
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-social-links {
        justify-content: center;
    }
    
    .gallery-slider {
        height: 300px;
    }
    
    .slide-caption h3 {
        font-size: 1.5rem;
    }
    
    .slide-caption p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeIn 1s ease-out;
}

/* Gallery Auto-play Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide {
    animation: slideIn 0.8s ease-in-out;
}

/* ===== GİRİŞ/KAYIT SAYFALARI STİLLERİ ===== */

/* Auth Container */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3E525F 0%, #2a3a45 100%);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.auth-container::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ECECEC" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

/* Auth Card */
.auth-card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    padding: 3rem;
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Auth Header */
.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.auth-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #3E525F;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: #3E525F;
    opacity: 0.7;
    font-size: 1.1rem;
}

/* Auth Form */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #3E525F;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 2px solid #d0d0d0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3E525F;
    box-shadow: 0 0 0 3px rgba(62, 82, 95, 0.1);
}

.form-help {
    font-size: 0.8rem;
    color: #3E525F;
    opacity: 0.7;
    margin-top: 0.25rem;
}

/* Form Options */
.form-options {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #3E525F;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #d0d0d0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #3E525F;
    border-color: #3E525F;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Auth Button */
.auth-btn {
    background-color: #3E525F;
    color: #ECECEC;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.auth-btn:hover {
    background-color: #2a3a45;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.auth-btn:active {
    transform: translateY(0);
}

/* Auth Links */
.auth-links {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #d0d0d0;
}

.auth-links p {
    margin-bottom: 0.5rem;
    color: #3E525F;
}

.auth-links a {
    color: #3E525F;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-links a:hover {
    color: #2a3a45;
    text-decoration: underline;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background-color: #ffffff;
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideInDown 0.3s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #d0d0d0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: #3E525F;
    font-size: 1.5rem;
    font-weight: 600;
}

.close {
    color: #3E525F;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #e74c3c;
}

.modal-body {
    padding: 2rem;
    color: #3E525F;
    line-height: 1.8;
}

.modal-body h3 {
    color: #3E525F;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.modal-body ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    text-align: right;
}

.btn-secondary {
    background-color: #ECECEC;
    color: #3E525F;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #d0d0d0;
}

/* Language Toggle */
.language-toggle {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.language-btn {
    background: linear-gradient(45deg, #3E525F, #2a3a45);
    color: #ECECEC;
    border: 2px solid #ECECEC;
    padding: 8px 15px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 60px;
    justify-content: center;
}

.language-btn:hover {
    background: linear-gradient(45deg, #ECECEC, #ffffff);
    color: #3E525F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.language-btn i {
    font-size: 1rem;
}

.language-btn span {
    font-weight: 700;
    font-size: 0.8rem;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.register-link {
    background-color: #ECECEC;
    color: #3E525F;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.register-link:hover {
    background-color: #ffffff;
    transform: translateY(-1px);
}

/* User Panel Styles */
.user-panel {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ECECEC;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.user-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.user-role {
    font-size: 0.8rem;
    opacity: 0.8;
}


.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ECECEC;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3E525F;
    font-weight: 600;
    font-size: 1.2rem;
}


.logout-btn {
    background-color: transparent;
    color: #ECECEC;
    border: 1px solid #ECECEC;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background-color: #ECECEC;
    color: #3E525F;
}

/* Responsive Auth */
@media (max-width: 768px) {
    .auth-container {
        padding: 10px;
    }
    
    .auth-card {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .auth-card {
        padding: 1.5rem;
    }
    
    .auth-header h1 {
        font-size: 1.5rem;
    }
    
    .auth-header p {
        font-size: 1rem;
    }
}

/* ===== PROFİL SAYFASI STİLLERİ ===== */

/* Profile Container */
.profile-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #3E525F 0%, #2a3a45 100%);
    padding: 100px 20px 20px;
    position: relative;
    overflow: hidden;
}

.profile-container::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ECECEC" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

/* Profile Card */
.profile-card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    padding: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.6s ease-out;
}

/* Profile Header */
.profile-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #ECECEC;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #3E525F;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ECECEC;
    font-size: 2.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.profile-info {
    flex: 1;
}

.profile-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3E525F;
    margin-bottom: 0.5rem;
}

.profile-info p {
    color: #3E525F;
    opacity: 0.7;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.role-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    background-color: #ECECEC;
    color: #3E525F;
}

.role-badge.admin {
    background-color: #e74c3c;
    color: #ffffff;
}

.profile-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-primary, .btn-secondary, .btn-admin {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #3E525F;
    color: #ECECEC;
}

.btn-primary:hover {
    background-color: #2a3a45;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #ECECEC;
    color: #3E525F;
    border: 2px solid #3E525F;
}

.btn-secondary:hover {
    background-color: #3E525F;
    color: #ECECEC;
}

.btn-admin {
    background-color: #e74c3c;
    color: #ffffff;
}

.btn-admin:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

/* Profile Content */
.profile-content {
    display: grid;
    gap: 2rem;
}

.profile-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3E525F;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ECECEC;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-item label {
    font-weight: 600;
    color: #3E525F;
    font-size: 0.9rem;
}

.info-item span {
    color: #3E525F;
    opacity: 0.8;
    font-size: 1rem;
}

/* Admin Panel */
.admin-panel {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e74c3c;
}

.admin-panel h3 {
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.admin-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Users List */
.users-list {
    max-height: 400px;
    overflow-y: auto;
}

.user-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 1px solid #ECECEC;
    border-radius: 8px;
    margin-bottom: 1rem;
    background-color: #f8f9fa;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.user-info strong {
    color: #3E525F;
    font-size: 1.1rem;
}

.user-email {
    color: #3E525F;
    opacity: 0.7;
    font-size: 0.9rem;
}

.user-role {
    background-color: #3E525F;
    color: #ECECEC;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    width: fit-content;
}

.user-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-small {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-small {
    background-color: #3E525F;
    color: #ECECEC;
}

.btn-small:hover {
    background-color: #2a3a45;
}

.btn-danger {
    background-color: #e74c3c;
    color: #ffffff;
}

.btn-danger:hover {
    background-color: #c0392b;
}

/* Responsive Profile */
@media (max-width: 768px) {
    .profile-container {
        padding: 80px 10px 10px;
    }
    
    .profile-card {
        padding: 2rem;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .profile-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary, .btn-admin {
        width: 100%;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-actions {
        flex-direction: column;
    }
    
    .user-item {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .user-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .profile-card {
        padding: 1.5rem;
    }
    
    .profile-info h1 {
        font-size: 2rem;
    }
    
    .profile-avatar {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* ===== GALERİ YÖNETİM SİSTEMİ ===== */

/* Admin Management Panel */
.admin-management-panel {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.admin-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.admin-btn i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.admin-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.admin-btn:hover i {
    transform: scale(1.15);
}

/* Özel buton renkleri */
.admin-btn.gallery-btn {
    background-color: #3498db;
    color: #ffffff;
}

.admin-btn.gallery-btn:hover {
    background-color: #2980b9;
}

.admin-btn.logo-btn {
    background-color: #f39c12;
    color: #ffffff;
}

.admin-btn.logo-btn:hover {
    background-color: #e67e22;
}

.admin-btn.users-btn {
    background-color: #9b59b6;
    color: #ffffff;
}

.admin-btn.users-btn:hover {
    background-color: #8e44ad;
}

/* Gallery Manager Modal */
.gallery-manager {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    min-height: 500px;
    max-height: 80vh;
    overflow-y: auto;
}

.upload-section {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #3E525F;
}

.upload-section h3 {
    color: #3E525F;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.upload-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.upload-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.upload-form label {
    font-weight: 600;
    color: #3E525F;
    font-size: 0.9rem;
}

.upload-form input,
.upload-form textarea {
    padding: 10px 12px;
    border: 2px solid #d0d0d0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
}

.upload-form input:focus,
.upload-form textarea:focus {
    outline: none;
    border-color: #3E525F;
}

.upload-form textarea {
    resize: vertical;
    min-height: 80px;
}

/* Gallery List Section */
.gallery-list-section {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #ECECEC;
}

.gallery-list-section h3 {
    color: #3E525F;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.gallery-list {
    max-height: 60vh;
    min-height: 300px;
    overflow-y: auto;
    padding-right: 10px;
}

.gallery-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 10px;
    margin-bottom: 1rem;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.gallery-item-preview {
    flex-shrink: 0;
}

.gallery-item-info {
    flex: 1;
    min-width: 0;
}

.gallery-item-info h4 {
    color: #3E525F;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gallery-item-info p {
    color: #3E525F;
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gallery-item-info small {
    color: #3E525F;
    opacity: 0.5;
    font-size: 0.8rem;
}

.gallery-item-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* Responsive Admin Panel */
@media (max-width: 768px) {
    .admin-management-panel {
        margin-left: 0.5rem;
        gap: 0.4rem;
    }
    
    .admin-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .admin-management-panel {
        margin-left: 0.25rem;
        gap: 0.3rem;
    }
    
    .admin-btn {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}

/* Responsive Gallery Manager */
@media (max-width: 768px) {
    .modal-content {
        width: 98%;
        max-width: 100%;
        margin: 1% auto;
        max-height: 95vh;
    }
    
    .gallery-manager {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        min-height: auto;
    }
    
    .upload-section,
    .gallery-list-section {
        padding: 1.5rem;
    }
    
    .gallery-list {
        max-height: 50vh;
        min-height: 200px;
    }
    
    .gallery-item {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .gallery-item-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .gallery-item-info h4,
    .gallery-item-info p {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }
}

@media (max-width: 480px) {
    .admin-gallery-panel {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .admin-btn {
        width: 100%;
        text-align: center;
    }
    
    .upload-section,
    .gallery-list-section {
        padding: 1rem;
    }
}


/* ===== RADYO SİSTEMİ ===== */
.radio-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Radyo Erişim Kısıtlaması */
.radio-access-restricted {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.access-restricted-content {
    max-width: 500px;
    margin: 0 auto;
}

.restricted-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.access-restricted-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}

.access-restricted-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.restricted-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.restricted-actions .btn-primary,
.restricted-actions .btn-secondary {
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.restricted-actions .btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
}

.restricted-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.restricted-actions .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.restricted-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.radio-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.radio-player {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.radio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.radio-info h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 600;
}

.radio-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

.radio-controls {
    display: flex;
    gap: 15px;
}

.control-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.control-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(255, 107, 107, 0.4);
}

.stop-btn {
    background: linear-gradient(45deg, #a55eea, #8b5cf6);
    box-shadow: 0 8px 20px rgba(165, 94, 234, 0.3);
}

.stop-btn:hover {
    box-shadow: 0 12px 25px rgba(165, 94, 234, 0.4);
}

.radio-player-embed {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radio-player-embed iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    border: none;
}

.radio-stations {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.radio-stations h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
    text-align: center;
}

.station-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.station-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid transparent;
}

.station-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.station-item.active {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.2);
}

.station-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 600;
}

.station-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.status-dot.active {
    background: #4CAF50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.status-dot.playing {
    background: #ff6b6b;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .category-header {
        padding: 1.5rem;
    }
    
    .category-info h3 {
        font-size: 1.5rem;
    }
    
    .playlist-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .play-btn, .pause-btn, .stop-btn {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .music-section {
        padding: 50px 0;
    }
    
    .category-header {
        padding: 1rem;
    }
    
    .category-info h3 {
        font-size: 1.3rem;
    }
    
    .playlist-content {
        padding: 1rem !important;
    }
    
    .playlist-controls {
        gap: 0.5rem;
    }
    
    .play-btn, .pause-btn, .stop-btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ===== LOGO YÖNETİM SİSTEMİ ===== */

/* Logo Manager */
.logo-manager {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

/* ===== ÜYE YÖNETİM SİSTEMİ ===== */

/* User Manager */
.user-manager {
    max-height: 70vh;
    overflow-y: auto;
}

.users-list-section {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #3E525F;
}

.users-list-section h3 {
    color: #3E525F;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.user-manager-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid #d0d0d0;
    border-radius: 12px;
    margin-bottom: 1rem;
    background-color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.user-manager-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.user-manager-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.user-manager-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3E525F;
    margin-bottom: 0.25rem;
}

.user-manager-email {
    color: #3E525F;
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.user-manager-role {
    background-color: #3E525F;
    color: #ECECEC;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    width: fit-content;
}

.user-manager-role.admin {
    background-color: #e74c3c;
    color: #ffffff;
}

.user-manager-ip {
    background-color: #f8f9fa;
    color: #3E525F;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-family: 'Courier New', monospace;
    border: 1px solid #d0d0d0;
    margin-top: 0.5rem;
}

.user-manager-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.user-manager-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.user-manager-btn.view {
    background-color: #3E525F;
    color: #ECECEC;
}

.user-manager-btn.view:hover {
    background-color: #2a3a45;
    transform: translateY(-1px);
}

.user-manager-btn.delete {
    background-color: #e74c3c;
    color: #ffffff;
}

.user-manager-btn.delete:hover {
    background-color: #c0392b;
    transform: translateY(-1px);
}

/* Responsive User Manager */
@media (max-width: 768px) {
    .user-manager-item {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .user-manager-actions {
        justify-content: center;
    }
    
    .user-manager-btn {
        flex: 1;
    }
}

.logo-preview-section {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #ECECEC;
}

.logo-preview-section h3 {
    color: #3E525F;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.current-logo {
    margin-bottom: 1.5rem;
}

.logo-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 10px;
    border: 2px solid #d0d0d0;
}

.logo-preview img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo-info {
    text-align: center;
}

.logo-info h4 {
    color: #3E525F;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.logo-info small {
    color: #3E525F;
    opacity: 0.7;
    font-size: 0.9rem;
}

.logo-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-danger {
    background-color: #e74c3c;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

/* Responsive Logo Manager */
@media (max-width: 768px) {
    .logo-manager {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .logo-preview-section {
        padding: 1.5rem;
    }
    
    .logo-preview {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .admin-management-panel {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .admin-btn {
        width: 100%;
        text-align: center;
    }
    
    .logo-preview-section {
        padding: 1rem;
    }
}

/* IP Log Yönetim Stilleri */
.large-modal .modal-content {
    max-width: 90%;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.ip-log-manager {
    padding: 20px;
}

.log-controls {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.log-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.log-filters input,
.log-filters select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.log-filters input {
    flex: 1;
    min-width: 200px;
}

.log-filters select {
    min-width: 150px;
}

.log-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    color: white;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-label {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
}

.logs-list-section h3 {
    margin-bottom: 15px;
    color: #3E525F;
    font-size: 18px;
}

.logs-list {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.log-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s;
}

.log-item:hover {
    background-color: #f8f9fa;
}

.log-item:last-child {
    border-bottom: none;
}

.log-info {
    flex: 1;
}

.log-ip {
    font-weight: bold;
    color: #3E525F;
    font-size: 16px;
    margin-bottom: 5px;
}

.log-time {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 3px;
}

.log-page {
    color: #495057;
    font-size: 13px;
    margin-bottom: 3px;
    word-break: break-all;
}

.log-referrer {
    color: #6c757d;
    font-size: 12px;
    font-style: italic;
}

.log-actions {
    display: flex;
    gap: 8px;
}

.btn-small {
    padding: 6px 12px;
    font-size: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-small:not(.btn-danger) {
    background-color: #007bff;
    color: white;
}

.btn-small:not(.btn-danger):hover {
    background-color: #0056b3;
}

.btn-small.btn-danger {
    background-color: #dc3545;
    color: white;
}

.btn-small.btn-danger:hover {
    background-color: #c82333;
}

/* Admin buton stilleri */
.admin-btn.logs-btn {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-btn.logs-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* IP Log Responsive */
@media (max-width: 768px) {
    .log-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .log-filters input,
    .log-filters select {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .log-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .log-item {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .log-actions {
        justify-content: center;
    }
}