@@font-face {
    font-family: 'Century Gothic';
    src: url('https://viviscapestorage.blob.core.windows.net/clients/centurygothic.ttf') format('truetype');
}
@@font-face {
    font-family: 'Century Gothic Bold';
    src: url('https://viviscapestorage.blob.core.windows.net/clients/centurygothic_bold.ttf') format('truetype');
}
@@font-face {
    font-family: 'Stylus BT';
    src: url('https://viviscapestorage.blob.core.windows.net/clients/STYLU.TTF') format('truetype');
}

body {
    font-family: 'Century Gothic', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

h1, h2, h3, h4 {
    font-family: 'Stylus BT', 'Century Gothic Bold', sans-serif;
    color: #6B5E9B;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 25px;
    padding: 10px 30px;
    font-family: 'Century Gothic Bold', sans-serif;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a6fd6 0%, #6a4196 100%);
}

.btn-cta {
    background: #8de1fd;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 40px;
    font-weight: bold;
    font-family: 'Century Gothic Bold', sans-serif;
    transition: all 0.3s ease;
}
.btn-cta:hover {
    background: #6ad5f8;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(141, 225, 253, 0.4);
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}
.hero-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite;
}
@@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.card-img-top {
    height: 220px;
    object-fit: cover;
}

.artwork-card .card-body {
    padding: 15px 20px;
}

.stat-card {
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    color: white;
    transition: transform 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-3px);
}
.stat-card h3 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 5px;
}
.stat-card p {
    margin: 0;
    opacity: 0.9;
}

.section-alt {
    background: #f8f9fa;
}

.auth-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 40px;
    max-width: 450px;
    margin: 0 auto;
}

.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
}
.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
}

.badge-status {
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 20px;
}
.badge-pending { background: #ffc107; color: #333; }
.badge-approved { background: #28a745; color: white; }
.badge-rejected { background: #dc3545; color: white; }
.badge-hidden { background: #6c757d; color: white; }

.reaction-btn {
    background: none;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 5px 15px;
    color: #6B5E9B;
    cursor: pointer;
    transition: all 0.3s ease;
}
.reaction-btn:hover, .reaction-btn.active {
    background: #6B5E9B;
    color: white;
    border-color: #6B5E9B;
}

.loading-spinner {
    text-align: center;
    padding: 40px;
    color: #6B5E9B;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}
.empty-state i {
    font-size: 4rem;
    margin-bottom: 15px;
    color: #ddd;
}

.navbar .nav-link {
    font-family: 'Century Gothic', sans-serif;
    font-weight: 500;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
}
