* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Keyframe Animations */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    transition: all 0.3s ease;
}

/* Dark theme as default */
body,
body[data-theme="dark"] {
    background: #0a0a0a;
    color: white;
}



/* Light Theme */
body[data-theme="light"] {
    background: linear-gradient(135deg, #f0f2ff 0%, #e6e8ff 100%) !important;
    color: #1a1a1a !important;
}



body[data-theme="light"] .nav-link {
    color: rgba(26, 26, 26, 0.8);
}

body[data-theme="light"] .nav-link:hover,
body[data-theme="light"] .nav-link.active {
    color: #1a1a1a;
}

body[data-theme="light"] .logo {
    color: #1a1a1a;
}

body[data-theme="light"] .search-input {
    background: rgba(26, 26, 26, 0.1);
    border: 1px solid rgba(26, 26, 26, 0.2);
    color: #1a1a1a;
}

body[data-theme="light"] .search-input::placeholder {
    color: rgba(26, 26, 26, 0.6);
}

body[data-theme="light"] .search-icon {
    color: rgba(26, 26, 26, 0.6);
}

body[data-theme="light"] .login-btn {
    background: rgba(26, 26, 26, 0.1);
    color: #1a1a1a;
    border: 1px solid rgba(26, 26, 26, 0.2);
}

body[data-theme="light"] .hero-subtitle {
    color: rgba(26, 26, 26, 0.8);
}

body[data-theme="light"] .stat-card {
    background: rgba(26, 26, 26, 0.1);
    border: 1px solid rgba(26, 26, 26, 0.2);
}

body[data-theme="light"] .stat-number {
    color: #1a1a1a;
}

body[data-theme="light"] .stat-label {
    color: rgba(26, 26, 26, 0.8);
}

body[data-theme="light"] .header {
    background: rgba(255, 255, 255, 0.9);
}

body[data-theme="light"] .footer {
    background: rgba(255, 255, 255, 0.5);
}



body[data-theme="light"] .hero-title {
    color: #1a1a1a;
}

body[data-theme="light"] .btn-secondary {
    background: rgba(26, 26, 26, 0.3);
    color: #1a1a1a;
    border: 1px solid rgba(26, 26, 26, 0.2);
}

body[data-theme="light"] .btn-secondary:hover {
    background: rgba(26, 26, 26, 0.5);
    color: white;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.header {
    padding: 20px 0;
    position: relative;
    z-index: 100;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

body[data-theme="dark"] .header {
    background: rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.logo i {
    font-size: 28px;
    color: #a855f7;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-container {
    position: relative;
}

.search-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 10px 40px 10px 20px;
    color: white;
    width: 250px;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
}

.theme-toggle {
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

body[data-theme="light"] .theme-toggle {
    background: rgba(26, 26, 26, 0.1);
    border: 1px solid rgba(26, 26, 26, 0.2);
    color: #1a1a1a;
}

body[data-theme="light"] .theme-toggle:hover {
    background: rgba(26, 26, 26, 0.2);
}

.login-btn,
.register-btn {
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 14px;
}

.login-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.login-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.register-btn {
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
    color: white;
    border: none;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3);
}

/* User Info Styles */
.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-btn {
    padding: 8px 16px;
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.profile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.user-welcome {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
}

.welcome-text {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    font-size: 0.8rem;
}

.username {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 2px;
}

.logout-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    color: #ef4444;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logout-btn i {
    font-size: 0.85rem;
}

.logout-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.logout-btn:hover::before {
    left: 100%;
}

.logout-btn:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.2) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
}

.logout-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.15);
}

/* Light theme user info */
body[data-theme="light"] .welcome-text {
    color: rgba(26, 26, 26, 0.6);
}

body[data-theme="light"] .username {
    color: rgba(26, 26, 26, 0.9);
}

body[data-theme="light"] .profile-btn {
    background: linear-gradient(135deg, #333333, #666666);
    color: white;
}

body[data-theme="light"] .profile-btn:hover {
    box-shadow: 0 4px 12px rgba(51, 51, 51, 0.3);
}

body[data-theme="light"] .logout-btn {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(220, 38, 38, 0.08) 100%);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #dc2626;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.08);
}

body[data-theme="light"] .logout-btn:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.15) 100%);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.4);
}

body[data-theme="light"] .logout-btn::before {
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
}

/* Toast Notification Styles */
.toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    pointer-events: none;
}

.toast {
    background: rgba(34, 197, 94, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    font-size: 13px;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.15);
    transform: translateX(350px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 250px;
    max-width: 320px;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.hide {
    transform: translateX(350px);
    opacity: 0;
}

.toast i {
    font-size: 16px;
    flex-shrink: 0;
}

.toast .close-toast {
    margin-left: auto;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0;
    font-size: 14px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.toast .close-toast:hover {
    opacity: 0.9;
}

/* Error Toast */
.toast.error {
    background: rgba(239, 68, 68, 0.7);
    border-color: rgba(239, 68, 68, 0.2);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.15);
}

/* Info Toast */
.toast.info {
    background: rgba(59, 130, 246, 0.7);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
}

/* Light theme toast */
body[data-theme="light"] .toast {
    color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.2);
}

body[data-theme="light"] .toast.error {
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.2);
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-section {
    margin-bottom: 80px;
}

/* Hero section background overlay for index page */
body.index-page .hero-section {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 40px;
    margin: 40px auto 80px auto;
    max-width: 1000px;
}

body[data-theme="light"].index-page .hero-section {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.0;
    margin-bottom: 30px;
    letter-spacing: -0.03em;
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, #a855f7, #c084fc, #e879f9, #f0abfc);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(168, 85, 247, 0.4);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

/* Stats Section */
.stats-section {
    width: 100%;
    padding: 60px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Stats section background overlay for index page */
body.index-page .stats-section {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 40px 40px 40px;
}

body[data-theme="light"].index-page .stats-section {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #a855f7;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px 30px 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 22px;
    color: #a855f7;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    font-size: 18px;
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, #ffffff, #cccccc);
    color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.footer-title {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 4px 0;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 40px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-bottom-info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
    text-align: center;
}

.footer-version {
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
}

.footer-status {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.online-indicator {
    color: #10b981;
    font-size: 8px;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Light theme footer */
body[data-theme="light"] .footer {
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .footer-logo {
    color: #1a1a1a;
}

body[data-theme="light"] .footer-description {
    color: rgba(26, 26, 26, 0.7);
}

body[data-theme="light"] .footer-title {
    color: #1a1a1a;
}

body[data-theme="light"] .footer-link {
    color: rgba(26, 26, 26, 0.7);
}

body[data-theme="light"] .footer-link:hover {
    color: #333333;
}

body[data-theme="light"] .social-link {
    background: rgba(26, 26, 26, 0.1);
    color: rgba(26, 26, 26, 0.7);
}

body[data-theme="light"] .social-link:hover {
    background: linear-gradient(135deg, #333333, #666666);
    color: white;
}

body[data-theme="light"] .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .footer-copyright {
    color: rgba(26, 26, 26, 0.6);
}

body[data-theme="light"] .footer-version {
    color: rgba(26, 26, 26, 0.5);
    background: rgba(26, 26, 26, 0.1);
}

body[data-theme="light"] .footer-separator {
    color: rgba(26, 26, 26, 0.3);
}

body[data-theme="light"] .footer-status {
    color: rgba(26, 26, 26, 0.7);
}

/* Coming Soon Styles */
.coming-soon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 40px 20px;
}

.coming-soon-content {
    text-align: center;
    max-width: 600px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.coming-soon-icon {
    font-size: 4rem;
    color: #a855f7;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #a855f7, #c084fc, #e879f9);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

.coming-soon-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.coming-soon-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Light theme coming soon */
body[data-theme="light"] .coming-soon-content {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .coming-soon-description {
    color: rgba(26, 26, 26, 0.8);
}

/* Responsive coming soon */
@media (max-width: 768px) {
    .coming-soon-content {
        padding: 40px 30px;
    }
    
    .coming-soon-icon {
        font-size: 3rem;
    }
    
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.3rem;
    }
    
    .coming-soon-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-content {
        padding: 30px 20px;
    }
    
    .coming-soon-icon {
        font-size: 2.5rem;
    }
    
    .coming-soon-title {
        font-size: 1.7rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.1rem;
    }
}

/* Responsive footer */
@media (max-width: 1200px) {
    .footer-content {
        padding: 35px 20px 25px 20px;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        padding: 30px 20px 15px 20px;
    }
    
    .footer-bottom-content {
        gap: 8px;
    }
    
    .footer-bottom {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px 15px 10px 15px;
    }
    
    .footer-logo {
        font-size: 18px;
    }
    
    .footer-logo i {
        font-size: 20px;
    }
    
    .social-link {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }
    
    .footer-bottom-info {
        flex-direction: column;
        gap: 6px;
    }
}



/* Responsive Design */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .main-content {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .search-input {
        width: 200px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .stats-container {
        gap: 20px;
    }
    
    .stat-card {
        flex: 1 1 calc(50% - 10px);
        min-width: 180px;
    }
    
    .stat-card {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .header-right {
        gap: 10px;
    }
    
    .search-container {
        display: none;
    }
    
    .hero-title {
        font-size: 3.2rem;
        line-height: 1.1;
        letter-spacing: -0.02em;
    }
    
    .stats-section {
        padding: 40px 20px;
    }
    
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card {
        flex: none;
        width: 100%;
        max-width: 300px;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner.hide {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 2.5rem;
    color: #ffffff;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
}

.cookie-accept {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.cookie-accept:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.cookie-settings {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cookie-settings:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Light theme cookie banner */
body[data-theme="light"] .cookie-banner {
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .cookie-title {
    color: #1a1a1a;
}

body[data-theme="light"] .cookie-description {
    color: rgba(26, 26, 26, 0.8);
}

body[data-theme="light"] .cookie-settings {
    background: rgba(26, 26, 26, 0.1);
    color: #1a1a1a;
    border: 1px solid rgba(26, 26, 26, 0.2);
}

body[data-theme="light"] .cookie-settings:hover {
    background: rgba(26, 26, 26, 0.2);
}

/* Responsive cookie banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .cookie-icon {
        font-size: 2rem;
    }
}

/* Oyun Arkadaşı İlanları - Kullanıcı Bilgileri */
.ad-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ad-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.user-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.ad-username {
    flex: 1;
}

.username-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.username-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Light theme için kullanıcı bilgileri */
body[data-theme="light"] .ad-user-info {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .username-link {
    color: #4f46e5;
}

body[data-theme="light"] .username-link:hover {
    color: #3730a3;
}



/* Readonly Input Stileri */
input[readonly], textarea[readonly], select[readonly] {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    cursor: default !important;
    opacity: 0.8;
}

input[readonly]:focus, textarea[readonly]:focus, select[readonly]:focus {
    box-shadow: none !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Light theme için readonly inputs */
body[data-theme="light"] input[readonly], 
body[data-theme="light"] textarea[readonly], 
body[data-theme="light"] select[readonly] {
    background: rgba(0, 0, 0, 0.02) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
    color: rgba(26, 26, 26, 0.7) !important;
}



 