/* Geliştirilmiş CSS Stilleri - ULTIMATE EDITION */
:root {
    /* Ana Renk Paleti - Enhanced Premium */
    --primary-color: #4361ee;
    --primary-light: #738bff;
    --primary-dark: #2c41c9;
    --secondary-color: #10b981;
    --secondary-light: #34d399;
    --secondary-dark: #059669;
    --accent-color: #ef4444;
    --accent-light: #f87171;
    --accent-dark: #dc2626;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --text-color: #334155;
    --text-muted: #64748b;
    
    /* Durum Renkleri - Prime */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #3b82f6;
    
    /* Yapısal Ölçüler */
    --sidebar-width: 280px;
    --header-height: 70px;
    --border-radius-sm: 6px;
    --border-radius-md: 10px;
    --border-radius-lg: 16px;
    --box-shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
    --box-shadow-md: 0 5px 15px rgba(0, 0, 0, 0.05);
    --box-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition-speed: 0.3s;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f9fafb;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all var(--transition-speed) ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Login Sayfası - Premium Edition */
.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #4158D0, #7782bb, #6a6b6e);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.login-page::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    top: -250px;
    right: -250px;
}

.login-page::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    bottom: -150px;
    left: -150px;
}

.login-container {
    width: 420px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-lg), 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 40px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.login-container:hover {
    transform: translateY(-5px);
}

.login-header {
    text-align: center;
    margin-bottom: 35px;
}

.login-logo {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.login-logo:hover {
    transform: scale(1.05);
}

.login-header h1 {
    color: var(--dark-color);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.login-header p {
    color: var(--text-muted);
    font-size: 16px;
}

.login-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 15px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-md);
    font-size: 15px;
    transition: all var(--transition-speed);
    background-color: #ffffff;
}

.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
}

.login-button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
    box-shadow: 0 4px 6px rgba(67, 97, 238, 0.15);
    position: relative;
    overflow: hidden;
}

.login-button::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: all 0.6s;
}

.login-button:hover {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(67, 97, 238, 0.2);
}

.login-button:hover::before {
    left: 100%;
}

.login-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 6px rgba(67, 97, 238, 0.1);
}

.error-message {
    background-color: rgba(239, 68, 68, 0.08);
    color: var(--danger-color);
    padding: 12px 16px;
    border-radius: var(--border-radius-md);
    margin-bottom: 24px;
    font-size: 14px;
    border-left: 3px solid var(--danger-color);
}

.login-footer {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* Dashboard Yapısı - Ultimate Edition */
.dashboard-container {
    display: flex;
    min-height: 100vh;
    background-color: #f8fafc;
}

.sidebar {
    width: var(--sidebar-width);
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    color: white;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 50;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.sidebar-header {
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.sidebar-logo {
    width: 45px;
    height: 45px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.sidebar-header h2 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
    background: linear-gradient(90deg, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sidebar-nav {
    flex: 1;
    padding: 25px 0;
    overflow-y: auto;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0 15px;
}

.sidebar-nav li {
    margin-bottom: 5px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    color: rgba(255, 255, 255, 0.75);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-speed);
    font-weight: 500;
}

.sidebar-nav a i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
    font-size: 18px;
    transition: transform var(--transition-speed);
}

.sidebar-nav a:hover,
.sidebar-nav li.active a {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    transform: translateX(5px);
}

.sidebar-nav li.active a {
    background: linear-gradient(90deg, var(--primary-color), rgba(67, 97, 238, 0.6));
    box-shadow: 0 4px 8px rgba(67, 97, 238, 0.3);
}

.sidebar-nav a:hover i,
.sidebar-nav li.active a i {
    transform: scale(1.1);
}

.sidebar-footer {
    padding: 20px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    padding: 30px;
    transition: margin-left var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.content-header h1 {
    font-size: 28px;
    color: var(--dark-color);
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.content-header h1 i {
    margin-right: 14px;
    color: var(--primary-color);
    font-size: 24px;
}

.user-info {
    display: flex;
    align-items: center;
}

.bot-status {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-left: 20px;
    transition: all var(--transition-speed);
}

.bot-status i {
    margin-right: 8px;
    font-size: 10px;
    position: relative;
}

.bot-status.online {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.bot-status.online i::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--success-color);
    border-radius: 50%;
    left: 7px;
    top: 7px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.bot-status.offline {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
}

/* Dashboard Cards - Prime Edition */
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-md);
    padding: 25px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    transition: all var(--transition-speed);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.card::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(67, 97, 238, 0.05);
    top: -50px;
    right: -50px;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(67, 97, 238, 0.2));
    color: var(--primary-color);
}

.card-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
    top: 0;
    left: 0;
}

.card:nth-child(2) .card-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.2));
    color: var(--secondary-color);
}

.card:nth-child(3) .card-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.2));
    color: #8b5cf6;
}

.card:nth-child(4) .card-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.2));
    color: var(--warning-color);
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.card-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: -0.5px;
    display: flex;
    align-items: baseline;
}

.card-value small {
    font-size: 15px;
    margin-left: 8px;
    font-weight: 500;
    color: var(--success-color);
}

.card-value small.negative {
    color: var(--danger-color);
}

/* Dashboard Widgets - Sentinel Edition */
.dashboard-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(550px, 1fr));
    gap: 25px;
}

.widget {
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-md);
    overflow: hidden;
    transition: all var(--transition-speed);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

.widget:hover {
    box-shadow: var(--box-shadow-lg);
}

.widget-header {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #FFFFFF;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget-header h3 {
    font-size: 18px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    font-weight: 600;
    margin: 0;
}

.widget-header h3 i {
    margin-right: 12px;
    color: var(--primary-color);
    font-size: 18px;
}

.widget-actions {
    display: flex;
    gap: 10px;
}

.widget-body {
    padding: 25px;
}

/* Tablolar - Enhanced Edition */
.table-responsive {
    overflow-x: auto;
    margin: 0 -5px;
    padding: 5px;
}

.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.data-table th, 
.data-table td {
    padding: 15px 20px;
    text-align: left;
    vertical-align: middle;
}

.data-table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: var(--dark-color);
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    letter-spacing: 0.3px;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 5;
}

.data-table tr {
    transition: all var(--transition-speed);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.data-table tr:last-child {
    border-bottom: none;
}

.data-table tbody tr:hover {
    background-color: rgba(67, 97, 238, 0.02);
}

.data-table .loading-text {
    text-align: center;
    padding: 30px;
    color: var(--text-muted);
    font-style: italic;
}

/* Butonlar - Ultimate Edition */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(67, 97, 238, 0.2);
}

.btn i {
    margin-right: 10px;
    font-size: 16px;
}

.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: all 0.6s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.3);
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: translateY(0);
}

.btn-danger {
    background: linear-gradient(45deg, var(--danger-color), var(--accent-light));
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.2);
}

.btn-danger:hover {
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-success {
    background: linear-gradient(45deg, var(--success-color), var(--secondary-light));
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.2);
}

.btn-success:hover {
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: none;
}

.btn-outline::before {
    display: none;
}

.btn-outline:hover {
    background-color: rgba(67, 97, 238, 0.05);
    border-color: var(--primary-dark);
    color: var(--primary-dark);
}

.action-buttons {
    display: flex;
    gap: 10px;
}

/* Data Table Filters - Optimum Edition */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.filter-group input,
.filter-group select {
    padding: 10px 15px;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-md);
    min-width: 180px;
    font-size: 14px;
    transition: all var(--transition-speed);
    background-color: #fff;
}

.filter-group input:focus,
.filter-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

/* Modal Stilleri - Premium Edition */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-content {
    background-color: white;
    margin: 60px auto;
    width: 85%;
    max-width: 850px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    animation: modalFadeIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8fafc;
}

.modal-header h2 {
    font-size: 22px;
    color: var(--dark-color);
    font-weight: 600;
    margin: 0;
}

.close {
    font-size: 28px;
    font-weight: 300;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 0.6;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-speed);
}

.close:hover {
    color: var(--dark-color);
    background-color: rgba(0, 0, 0, 0.05);
}

.modal-body {
    padding: 25px;
}

.set-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f8fafc;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.set-info-group {
    display: flex;
    align-items: center;
}

.set-info-label {
    font-weight: 600;
    margin-right: 10px;
    color: var(--dark-color);
}

.set-info-value {
    color: var(--primary-color);
    font-weight: 500;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.data-table-container {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 25px;
    box-shadow: var(--box-shadow-md);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Form Elements - Enhanced Edition */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--dark-color);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-md);
    font-size: 15px;
    transition: all var(--transition-speed);
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-hint {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

/* Responsive Design - Sentinel Mode */
@media (max-width: 991px) {
    .dashboard-widgets {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --sidebar-width: 0px;
    }
    
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: none;
    }
    
    .sidebar.show {
        transform: translateX(0);
        width: 280px;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    }
    
    .main-content {
        margin-left: 0;
        padding: 20px;
    }
    
    .dashboard-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .modal-content {
        width: 95%;
        margin: 30px auto;
    }
    
    .filters {
        flex-direction: column;
        gap: 15px;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .filter-group input,
    .filter-group select {
        width: 100%;
        min-width: 100%;
    }
    
    .action-buttons {
        flex-wrap: wrap;
    }
}
.status-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.status-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    align-items: center;
}

.status-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 24px;
}

.status-card.status-online .status-icon {
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--success-color);
}

.status-card.status-offline .status-icon {
    background-color: rgba(231, 76, 60, 0.1);
    color: var(--danger-color);
}

.status-content {
    flex: 1;
}

.status-content h3 {
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
}

.status-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
}

.last-update {
    text-align: right;
    font-size: 12px;
    color: #999;
    margin-bottom: 20px;
}

/* Landing Page Styles - Epic Edition */
.landing-page {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0f1622 0%, #1a2a3d 100%);
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    overflow-x: hidden;
}

.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(67, 97, 238, 0.1) 2px, transparent 2px),
        radial-gradient(rgba(67, 97, 238, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px;
    background-position: 0 0, 25px 25px;
    z-index: 1;
    animation: particleFloat 120s linear infinite;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(41, 58, 128, 0.4) 0%, rgba(11, 19, 43, 0.2) 80%);
    z-index: 2;
}

@keyframes particleFloat {
    0% { background-position: 0 0, 25px 25px; }
    100% { background-position: 1000px 1000px, 1025px 1025px; }
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

/* Header Styles */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    background: rgba(15, 22, 34, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.landing-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.landing-logo {
    width: 45px;
    height: 45px;
    filter: drop-shadow(0 0 10px rgba(67, 97, 238, 0.5));
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    margin-left: 15px;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #fff, #738bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.landing-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

.landing-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transition: width 0.3s ease;
}

.landing-nav a:hover {
    color: white;
}

.landing-nav a:hover::after {
    width: 100%;
}

.nav-login-btn {
    background-color: rgba(67, 97, 238, 0.1);
    border: 1px solid rgba(67, 97, 238, 0.3);
    padding: 8px 16px !important;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease !important;
}

.nav-login-btn:hover {
    background-color: rgba(67, 97, 238, 0.2);
    transform: translateY(-2px);
}

.nav-login-btn::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* Hero Section Styles */
.hero-section {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
    gap: 30px;
}

.hero-content {
    animation: fadeInUp 1s 0.2s forwards;
    opacity: 0;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 0 0 10px;
    background: linear-gradient(90deg, #ffffff, #738bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin: 20px 0;
    color: var(--primary-light);
    letter-spacing: 3px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.main-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(67, 97, 238, 0.4);
}

.main-cta-button::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: all 0.6s ease;
}

.main-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.5);
}

.main-cta-button:hover::before {
    left: 100%;
}

.secondary-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.secondary-cta-button:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInRight 1s 0.4s forwards;
    opacity: 0;
}

.guild-emblem {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.guild-emblem img {
    width: 280px;
    height: 280px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(67, 97, 238, 0.6));
}

.emblem-aura {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.3) 0%, rgba(41, 58, 128, 0.1) 60%, transparent 100%);
    animation: pulse 3s infinite;
}

.pulse-animation {
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* About Section Styles */
.about-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(45deg, rgba(15, 22, 34, 0.8) 0%, rgba(67, 97, 238, 0.7) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 20px;
    background: linear-gradient(90deg, #ffffff, #738bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--primary-light);
    letter-spacing: 2px;
    margin: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    gap: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.about-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.shadow-effect {
    position: relative;
}

.shadow-effect::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.5);
}

.experience-badge .years {
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 18px;
    font-weight: 600;
}

.about-text h3 {
    font-size: 30px;
    margin: 0 0 25px;
    color: white;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.achievement-counters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.counter-item {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.counter-item:last-child {
    border-right: none;
}

.counter-value {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 5px;
}

.counter-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.guild-quote {
    position: relative;
    font-size: 18px;
    font-style: italic;
    color: white;
    padding: 20px 30px;
    border-left: 3px solid var(--primary-color);
    background: rgba(67, 97, 238, 0.1);
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
}

.guild-quote cite {
    display: block;
    font-size: 14px;
    font-style: normal;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.7);
}

/* Achievements Section Styles */
.achievements-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, rgba(15, 22, 34, 0.9) 0%, rgba(26, 42, 61, 0.9) 100%);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.achievement-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(67, 97, 238, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    z-index: -1;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, rgba(67, 97, 238, 0.2), rgba(67, 97, 238, 0.05));
    border-radius: 50%;
    font-size: 36px;
    color: var(--primary-light);
}

.achievement-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 15px;
    color: white;
}

.achievement-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Gallery Section Styles */
.gallery-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(0deg, rgba(15, 22, 34, 0.9) 0%, rgba(26, 42, 61, 0.9) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 250px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.gallery-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: 600;
}

.gallery-overlay p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* CTA Section Styles */
.cta-section {
    padding: 120px 0;
    background: url('/img/cta-bg.jpg') center/cover no-repeat fixed;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(15, 22, 34, 0.8) 0%, rgba(67, 97, 238, 0.7) 100%);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 20px;
    color: white;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Footer Styles */
.landing-footer {
    padding: 80px 0 40px;
    background: linear-gradient(45deg, rgba(15, 22, 34, 0.8) 0%, rgba(67, 97, 238, 0.7) 100%);
    color: white;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(67, 97, 238, 0.3));
}

.footer-logo h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px;
}

.footer-logo p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px;
    position: relative;
    display: inline-block;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact ul li i {
    margin-right: 10px;
    color: var(--primary-light);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 5px 0;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100%;
    background: linear-gradient(135deg, #1a2a3d 0%, #0f1622 100%);
    z-index: 1000;
    padding: 30px;
    transition: right 0.4s ease;
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mobile-logo {
    width: 40px;
    height: 40px;
}

.close-menu {
    font-size: 24px;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.mobile-nav-links li {
    margin-bottom: 15px;
}

.mobile-nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    color: white;
    padding-left: 5px;
}

.mobile-login-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary-color);
    color: white !important;
    border-radius: var(--border-radius-md);
    padding: 12px 20px !important;
    margin-top: 10px;
    border-bottom: none !important;
}

.mobile-login-btn:hover {
    background: var(--primary-dark);
    padding-left: 20px !important;
}

.mobile-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 50px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .guild-emblem img {
        width: 240px;
        height: 240px;
    }
    
    .emblem-aura {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 991px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .landing-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .achievement-counters {
        grid-template-columns: 1fr;
    }
    
    .counter-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    
    .counter-item:last-child {
        border-bottom: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}