@charset "UTF-8";

/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --danger-color: #f44336;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --text-color: #333;
    --border-color: #dee2e6;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f5f7fa;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Stilleri */
.site-header {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 10px 0;
}

.quick-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}

.quick-links a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.quick-links a:hover {
    opacity: 0.8;
}

.welcome-msg {
    margin-right: 20px;
}

.header-main {
    padding: 20px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h1 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px;
    font-weight: bold;
}

/* Ana Navigasyon */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.main-nav a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: var(--transition);
}

.main-nav a:hover:after,
.main-nav .active a:after {
    width: 100%;
}

/* Dropdown Menü */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    list-style: none;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

/* Arama Kutusu */
.search-box {
    position: relative;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: var(--light-color);
    border-radius: 50px;
    overflow: hidden;
    transition: var(--transition);
}

.search-input-wrapper:focus-within {
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-input {
    border: none;
    background: none;
    padding: 12px 20px;
    width: 250px;
    outline: none;
    transition: var(--transition);
}

.search-input:focus {
    width: 350px;
}

.search-category {
    border: none;
    background: none;
    padding: 0 10px;
    outline: none;
    color: var(--text-color);
}

.search-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    color: white;
    padding: 12px 20px;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    transform: scale(1.05);
}

/* Mobil Menü Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
}

/* Kayan Sponsorlar */
.sliding-sponsors {
    background: white;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.slide-track {
    display: flex;
    animation: slide 30s linear infinite;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 60px;
    margin: 0 20px;
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Ana İçerik */
.main-content {
    padding: 40px 0;
    min-height: 500px;
}

/* Sponsor Bölümleri */
.sponsor-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 32px;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title i {
    margin-right: 10px;
    color: var(--primary-color);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

/* Sponsor Grid */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* Sponsor Box */
.sponsor-box {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.sponsor-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.sponsor-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.vip-sponsors .sponsor-box:before {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

.sponsor-header {
    padding: 20px;
    background: var(--light-color);
    text-align: center;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-logo {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
}

.sponsor-name-header {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.sponsor-box h3 {
    padding: 0 20px;
    margin: 20px 0 10px;
    color: var(--dark-color);
    font-size: 20px;
}

.sponsor-description {
    padding: 0 20px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.sponsor-tags {
    padding: 0 20px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--light-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    transition: var(--transition);
}

.tag:hover {
    background: var(--primary-color);
    color: white;
}

/* Sullivan Button */
.sullivan-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    margin: 0 20px 20px;
    position: relative;
    overflow: hidden;
}

.sullivan-btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.sullivan-btn:hover:before {
    width: 300px;
    height: 300px;
}

.sullivan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.sullivan-btn i {
    transition: var(--transition);
}

.sullivan-btn:hover i {
    transform: translateX(5px);
}

/* Reklam Alanları */
.ad-banner {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
.site-footer {
    background: var(--dark-color);
    color: white;
    margin-top: 80px;
}

.footer-content {
    padding: 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 10px;
}

/* Sosyal Medya Linkleri */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-link.facebook:hover {
    background: #1877f2;
}

.social-link.twitter:hover {
    background: #1da1f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.youtube:hover {
    background: #ff0000;
}

.social-link.linkedin:hover {
    background: #0077b5;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow);
    display: none;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.scroll-to-top.show {
    display: flex;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation-duration: 0.6s;
    animation-fill-mode: both;
}

.fadeInUp {
    animation-name: fadeInUp;
}

/* Form Elemanları */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-color);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.btn-success {
    background: var(--success-color);
    color: white;
}

.btn-success:hover {
    background: #45a049;
}

/* Alertler */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Mobil Menü */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 1001;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav > ul > li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav a {
    display: block;
    padding: 15px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.mobile-nav a:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.mobile-nav .active a {
    color: var(--primary-color);
    font-weight: 500;
}

.has-submenu .submenu {
    display: none;
    background: var(--light-color);
}

.has-submenu.active .submenu {
    display: block;
}

.submenu a {
    padding-left: 40px;
}

.mobile-user-section {
    padding: 20px;
    background: var(--light-color);
}

.user-info,
.user-points {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Sections for Different Pages */
.search-hero, .events-hero, .marketplace-hero, .login-hero, .register-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.marketplace-hero {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
}

.search-hero h1, .events-hero h1, .marketplace-hero h1, .login-hero h1, .register-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease;
}

.search-hero p, .events-hero p, .marketplace-hero p, .login-hero p, .register-hero p {
    font-size: 20px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease;
}

/* Search Page Styles */
.search-form {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.search-input-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-input-group .form-control {
    flex: 1;
    height: 50px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    padding: 0 20px;
    font-size: 16px;
}

.search-input-group select {
    min-width: 200px;
}

.search-btn {
    height: 50px;
    padding: 0 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.results-count {
    font-size: 18px;
    color: #666;
}

.search-query {
    color: var(--primary-color);
    font-weight: 600;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.no-results i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-results h3 {
    color: #666;
    margin-bottom: 10px;
}

.no-results p {
    color: #999;
    margin-bottom: 20px;
}

.search-suggestions {
    margin-top: 20px;
}

.search-suggestions h4 {
    margin-bottom: 15px;
    color: #666;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.suggestion-tag {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.suggestion-tag:hover {
    background: var(--primary-color);
    color: white;
}

/* Events Page Styles */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.event-box {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.event-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.event-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.event-content {
    padding: 25px;
}

.event-title {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.event-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.event-reward {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light-color);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
}

.event-reward i {
    font-size: 20px;
}

.event-participants {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
}

.event-countdown {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-color);
    border-radius: 10px;
}

.countdown-item {
    display: inline-block;
    margin: 0 10px;
    text-align: center;
}

.countdown-item small {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.event-countdown.expired {
    color: var(--danger-color);
    font-weight: 600;
}

.join-event-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.join-event-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.join-event-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.join-event-btn.btn-success {
    background: var(--success-color);
}

.event-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--danger-color);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.event-ribbon.new {
    background: var(--success-color);
}

/* Marketplace Page Styles */
.user-points-banner {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
    text-align: center;
    animation: fadeInUp 0.6s ease;
}

.user-points {
    font-size: 48px;
    color: #4caf50;
    font-weight: bold;
    margin-bottom: 10px;
}

.user-points i {
    color: #ffd700;
    margin-right: 10px;
}

.points-label {
    color: #666;
    font-size: 18px;
}

.marketplace-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.marketplace-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.marketplace-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
}

.item-content {
    padding: 25px;
}

.item-title {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.item-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.item-price {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light-color);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
}

.item-price i {
    font-size: 20px;
    color: #ffd700;
}

.item-stock {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
}

.purchase-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.purchase-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.purchase-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #ccc;
}

.purchase-btn.btn-success {
    background: var(--success-color);
}

.purchase-btn.insufficient-points {
    background: var(--danger-color);
}

.item-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--danger-color);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.item-ribbon.popular {
    background: var(--warning-color);
}

.item-ribbon.limited {
    background: var(--danger-color);
}

.login-prompt {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.login-prompt i {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.login-prompt h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.login-prompt p {
    color: #666;
    margin-bottom: 25px;
}

/* Login/Register Form Styles */
.login-container, .register-container {
    max-width: 500px;
    margin: 0 auto 80px;
}

.register-container {
    max-width: 600px;
}

.login-form, .register-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease;
}

.form-title {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    font-size: 28px;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 43px;
    color: #999;
    font-size: 18px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    padding-left: 45px;
    height: 50px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    font-size: 16px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.form-control.error {
    border-color: var(--danger-color);
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.form-check input {
    margin-right: 8px;
    margin-top: 3px;
}

.form-check label {
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 14px;
}

.form-check a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-check a:hover {
    text-decoration: underline;
}

.forgot-password {
    float: right;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-login, .btn-register {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login:hover, .btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.btn-register:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.login-link, .register-link {
    text-align: center;
    margin-top: 30px;
    color: #666;
}

.login-link a, .register-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.login-link a:hover, .register-link a:hover {
    text-decoration: underline;
}

/* Email Verification Styles */
body.verify-page {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.verify-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    text-align: center;
    animation: fadeInUp 0.6s ease;
}

.verify-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 40px;
    color: white;
}

.verify-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: bounce 1s ease;
}

.verify-icon.success {
    color: var(--success-color);
}

.verify-icon.error {
    color: var(--danger-color);
}

.verify-header h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.verify-content {
    padding: 40px;
}

.verify-message {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #666;
}

.verify-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: -400px;
    background: white;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: right 0.3s ease;
    z-index: 9999;
    max-width: 400px;
}

.notification.show {
    right: 20px;
}

.notification.success {
    border-left: 4px solid var(--success-color);
}

.notification.error {
    border-left: 4px solid var(--danger-color);
}

.notification i {
    font-size: 24px;
}

.notification.success i {
    color: var(--success-color);
}

.notification.error i {
    color: var(--danger-color);
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .search-input-group {
        flex-direction: column;
    }
    
    .search-input-group .form-control,
    .search-input-group select,
    .search-btn {
        width: 100%;
    }
    
    .search-results-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .register-form, .login-form {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .verify-actions {
        flex-direction: column;
    }
    
    .verify-actions .btn {
        width: 100%;
        justify-content: center;
    }
}  