/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg-primary: #0a0a0a;
    --color-bg-secondary: #1a1a1a;
    --color-accent: #CD7F32;
    --color-accent-light: #DAA06D;
    --color-text-primary: #ffffff;
    --color-text-secondary: #a0a0a0;
    --color-border: #2a2a2a;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Source Sans 3', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text-primary);
    cursor: pointer;
    text-decoration: none;
}

.logo svg {
    color: var(--color-accent);
}

.nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-weight: 400;
}

.nav a:hover,
.nav a.active {
    color: var(--color-text-primary);
}
.nav a.active {
    color: var(--color-accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    min-width: 200px;
}

.search-input svg {
    color: var(--color-text-secondary);
    flex-shrink: 0;
}

.search-input input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--color-text-primary);
    font-size: 0.9rem;
    width: 100%;
    font-family: var(--font-body);
}

.search-input input::placeholder {
    color: var(--color-text-secondary);
}

.btn-upload {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: var(--color-text-primary);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    box-shadow: 0 4px 12px rgba(205, 127, 50, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-upload:hover {
    background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(205, 127, 50, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.85) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    max-width: 800px;
    padding: 2rem 0;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.75rem;
    border-radius: 24px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-weight: 400;
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--color-accent);
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.2) 0%, rgba(218, 160, 109, 0.2) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(205, 127, 50, 0.2);
}

.hero-search {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    max-width: 600px;
}

.hero-search svg {
    color: var(--color-text-secondary);
    flex-shrink: 0;
}

.hero-search input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--color-text-primary);
    font-size: 1rem;
    width: 100%;
    font-family: var(--font-body);
}

.hero-search input::placeholder {
    color: var(--color-text-secondary);
}

/* Gallery Section */
.gallery {
    position: relative;
    padding: 4rem 0 6rem;
    background: var(--color-bg-primary);
}

.gallery-background {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(205, 127, 50, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    grid-auto-flow: dense;
}

.artwork-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--color-bg-secondary);
}

.artwork-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.artwork-card.large {
    grid-row: span 2;
}

.artwork-card.medium {
    min-height: 300px;
}

.artwork-card.small {
    min-height: 200px;
}

.artwork-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.artwork-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.artwork-card:hover .artwork-info {
    transform: translateY(0);
}

.artwork-info h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.artwork-info .artist {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.artwork-info .price {
    color: var(--color-accent);
    font-size: 1rem;
    font-weight: 600;
}

.like-btn {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
}

.artwork-card:hover .like-btn {
    opacity: 1;
}

.like-btn svg {
    color: var(--color-text-primary);
    transition: all 0.3s ease;
}

.like-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: scale(1.1);
}

.like-btn:hover svg {
    fill: var(--color-text-primary);
}

/* Community Section */
.community {
    padding: 6rem 0;
    background: var(--color-bg-secondary);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    line-height: 1.3;
}

.section-header h2 .highlight {
    font-weight: 600;
}

.scroll-indicators {
    display: flex;
    gap: 0.5rem;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-dot.active {
    background: var(--color-accent);
    width: 24px;
    border-radius: 4px;
}

.community-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 1rem;
}

.community-scroll::-webkit-scrollbar {
    display: none;
}

.community-card {
    flex: 0 0 320px;
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.community-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.community-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.community-info {
    flex: 1;
}

.community-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.community-info .status {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.engagement {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.community-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.community-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    color: var(--color-text-secondary);
}

.community-footer svg {
    color: var(--color-accent);
}

.community-footer span {
    font-size: 0.9rem;
}

/* Courses Section */
.courses {
    padding: 6rem 0 8rem;
    background: var(--color-bg-primary);
}

.btn-view-all {
    background: rgba(205, 127, 50, 0.15);
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    padding: 0.7rem 1.75rem;
    border-radius: 24px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-weight: 500;
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-block;
}

.btn-view-all:hover {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: var(--color-text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(205, 127, 50, 0.3);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.course-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.course-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(10, 10, 10, 0.4) 50%,
        transparent 70%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.course-card:hover .course-overlay {
    opacity: 1;
}

.course-icon {
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.course-card:hover .course-icon {
    transform: scale(1.2);
}

.course-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.8) 60%,
        transparent 100%
    );
    padding: 3rem 1.5rem 1.5rem;
}

.course-info h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.course-info .badge {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-family: var(--font-body);
    font-weight: 400;
}

.course-info .instructor {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav {
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        padding-top: 1rem;
        border-top: 1px solid var(--color-border);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }

    .artwork-card.large {
        grid-row: span 1;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .header-actions {
        flex-direction: column;
        width: 100%;
    }

    .search-input {
        width: 100%;
    }

    .btn-upload {
        width: 100%;
    }

    .hero-search {
        max-width: 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .community-card {
        flex: 0 0 280px;
    }
}

/* ========== Forms & Pages (app-wide) ========== */
.page-header {
    margin-bottom: 2rem;
}
.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.page-header p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}
.form-control {
    width: 100%;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--color-text-primary);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(205, 127, 50, 0.2);
}
.form-control::placeholder {
    color: var(--color-text-secondary);
    opacity: 0.8;
}
select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23a0a0a0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 2.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: var(--color-text-primary);
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 24px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    box-shadow: 0 4px 12px rgba(205, 127, 50, 0.3);
    text-decoration: none;
    display: inline-block;
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(205, 127, 50, 0.4);
}
.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
    padding: 0.75rem 1.75rem;
    border-radius: 24px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    text-decoration: none;
    display: inline-block;
}
.btn-secondary:hover {
    border-color: var(--color-accent);
    background: rgba(205, 127, 50, 0.15);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}
.badge-fixed {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-secondary);
}
.badge-auction {
    background: rgba(205, 127, 50, 0.25);
    color: var(--color-accent);
}
.badge-won {
    background: rgba(76, 175, 80, 0.25);
    color: #81c784;
}
.badge-outbid {
    background: rgba(244, 67, 54, 0.2);
    color: #e57373;
}
.badge-leading {
    background: rgba(205, 127, 50, 0.3);
    color: var(--color-accent-light);
}

/* Cards (app pages) */
.card {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.card-body {
    padding: 1.5rem;
}

/* Tables */
.table-wrap {
    overflow-x: auto;
}
table.table {
    width: 100%;
    border-collapse: collapse;
}
table.table th,
table.table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}
table.table th {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
}
table.table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Dashboard */
.dashboard-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 900px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
    }
}
.dashboard-nav {
    position: sticky;
    top: 5rem;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 0.5rem;
}
.dashboard-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
}
.dashboard-nav a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-primary);
}
.dashboard-nav a.active {
    background: rgba(205, 127, 50, 0.2);
    color: var(--color-accent);
}
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}
.dashboard-stat {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.25rem;
}
.dashboard-stat .value {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-text-primary);
}
.dashboard-stat .label {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-top: 0.25rem;
}

/* Item detail (marketplace) */
.item-detail {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 900px) {
    .item-detail {
        grid-template-columns: 1fr;
    }
}
.item-gallery {
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-bg-secondary);
}
.item-gallery img {
    width: 100%;
    height: auto;
    display: block;
}
.item-sidebar {
    position: sticky;
    top: 5rem;
}
.item-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.item-meta {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
.item-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 1rem;
}
.bid-box {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.bid-box h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.bid-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.bid-form input {
    flex: 1;
}
.countdown {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-top: 0.5rem;
}
.countdown.ended {
    color: #e57373;
}
.bid-history {
    list-style: none;
    max-height: 200px;
    overflow-y: auto;
}
.bid-history li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9rem;
}
.bid-history li:last-child {
    border-bottom: none;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--color-text-secondary);
}
.empty-state h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}
.empty-state p {
    margin-bottom: 1.5rem;
}

/* Auth pages */
.auth-page {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2rem;
}
.auth-card h1 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}
.auth-card .form-group:last-of-type {
    margin-bottom: 1.5rem;
}
.auth-card .btn-primary {
    width: 100%;
    padding: 0.85rem;
}
.auth-footer {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}
.auth-footer a {
    color: var(--color-accent);
    text-decoration: none;
}
.auth-footer a:hover {
    text-decoration: underline;
}
.error-msg {
    background: rgba(244, 67, 54, 0.15);
    color: #e57373;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.success-msg {
    background: rgba(76, 175, 80, 0.15);
    color: #81c784;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
