/* ========================================
   HotelAxissa - Tyylit
   Väripaletti: #f24389 (pinkki), #a478f1 (violetti), #f4e784 (kulta)
   ======================================== */

/* CSS Variables */
:root {
    --primary: #f24389;
    --secondary: #a478f1;
    --accent: #f4e784;
    --dark: #0d0d14;
    --dark-light: #16161f;
    --dark-medium: #1e1e2a;
    --dark-card: #222230;
    --text-light: #ffffff;
    --text-muted: #9ca3af;
    --text-dark: #374151;
    --bg-light: #f8f9fa;
    --gradient-main: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
    --shadow-glow: 0 0 40px rgba(242, 67, 137, 0.2);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }
h4 { font-size: 1.125rem; }

p {
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(242, 67, 137, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(242, 67, 137, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--text-light);
}

.btn-full {
    width: 100%;
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   18+ Age Banner (Sticky)
   ======================================== */
.age-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    padding: 10px 20px;
    z-index: 1001;
    text-align: center;
}

.age-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
}

.age-icon {
    background: var(--text-light);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.8rem;
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
}

.logo-text .highlight {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-links a {
    padding: 8px 14px;
    border-radius: 6px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
}

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

.nav-cta {
    padding: 10px 20px;
    background: var(--gradient-primary);
    color: var(--text-light);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
}

.nav-cta:hover {
    box-shadow: 0 4px 15px rgba(242, 67, 137, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    padding: 160px 0 80px;
    background: var(--bg-light);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.hero-title {
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-desc {
    font-size: 1rem;
    margin-bottom: 24px;
    color: var(--text-muted);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(242, 67, 137, 0.1);
    color: var(--primary);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f24389' opacity='0.3'%3E%3Ccircle cx='5' cy='5' r='3'/%3E%3Ccircle cx='25' cy='5' r='3'/%3E%3Ccircle cx='45' cy='5' r='3'/%3E%3Ccircle cx='65' cy='5' r='3'/%3E%3Ccircle cx='85' cy='5' r='3'/%3E%3Ccircle cx='5' cy='25' r='3'/%3E%3Ccircle cx='25' cy='25' r='3'/%3E%3Ccircle cx='45' cy='25' r='3'/%3E%3Ccircle cx='65' cy='25' r='3'/%3E%3Ccircle cx='85' cy='25' r='3'/%3E%3Ccircle cx='5' cy='45' r='3'/%3E%3Ccircle cx='25' cy='45' r='3'/%3E%3Ccircle cx='45' cy='45' r='3'/%3E%3Ccircle cx='65' cy='45' r='3'/%3E%3Ccircle cx='85' cy='45' r='3'/%3E%3Ccircle cx='5' cy='65' r='3'/%3E%3Ccircle cx='25' cy='65' r='3'/%3E%3Ccircle cx='45' cy='65' r='3'/%3E%3Ccircle cx='65' cy='65' r='3'/%3E%3Ccircle cx='85' cy='65' r='3'/%3E%3Ccircle cx='5' cy='85' r='3'/%3E%3Ccircle cx='25' cy='85' r='3'/%3E%3Ccircle cx='45' cy='85' r='3'/%3E%3Ccircle cx='65' cy='85' r='3'/%3E%3Ccircle cx='85' cy='85' r='3'/%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

/* ========================================
   Steps Section
   ======================================== */
.steps-section {
    padding: 80px 0;
    background: var(--dark);
}

.steps-section h2,
.steps-section h4,
.steps-section p {
    color: var(--text-light);
}

.steps-section .section-desc {
    color: var(--text-muted);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    margin-bottom: 16px;
}

.section-desc {
    margin-bottom: 32px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--dark-medium);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary);
}

.step-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--text-light);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.steps-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

/* ========================================
   Services Section
   ======================================== */
.services-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-header {
    max-width: 600px;
    margin-bottom: 48px;
}

.section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.services-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.service-card {
    padding: 24px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

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

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    color: var(--text-light);
}

.service-card h3 {
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
}

.service-card p {
    font-size: 0.85rem;
    line-height: 1.6;
}

.services-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    padding: 80px 0;
    background: var(--dark);
}

.about-section h2,
.about-section p {
    color: var(--text-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-desc {
    font-size: 1rem;
    margin-bottom: 32px;
    color: var(--text-muted);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--dark-medium);
    border-radius: var(--border-radius);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.about-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.about-section .btn-outline {
    border-color: var(--text-light);
    color: var(--text-light);
}

.about-section .btn-outline:hover {
    background: var(--text-light);
    color: var(--dark);
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

/* ========================================
   Games Section
   ======================================== */
.games-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.game-category {
    padding: 32px 24px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: var(--transition);
}

.game-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.category-icon svg {
    width: 28px;
    height: 28px;
    color: var(--text-light);
}

.game-category h3 {
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.game-category p {
    font-size: 0.9rem;
}

/* ========================================
   Team Section
   ======================================== */
.team-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
    box-shadow: 0 4px 20px rgba(242, 67, 137, 0.2);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.member-role {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    padding: 80px 0;
    background: var(--dark);
}

.faq-section h2 {
    color: var(--text-light);
}

.faq-section .section-desc {
    color: var(--text-muted);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--dark-medium);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary);
    transition: var(--transition);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper h2 {
    margin-bottom: 24px;
}

.contact-form {
    background: white;
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-light);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: var(--dark);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(242, 67, 137, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-notice {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.form-notice a {
    color: var(--primary);
}

.contact-info h3 {
    margin-bottom: 16px;
}

.contact-desc {
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--text-light);
}

.contact-item span {
    font-size: 0.95rem;
    color: var(--dark);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--dark);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact li {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.age-warning {
    display: flex;
    align-items: center;
    gap: 12px;
}

.age-badge {
    background: var(--primary);
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.85rem;
}

.age-warning span:last-child {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ========================================
   Policy Pages
   ======================================== */
.policy-page {
    padding-top: 160px;
    padding-bottom: 60px;
    min-height: 100vh;
    background: var(--bg-light);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
}

.policy-content h1 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.policy-content .last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.policy-content h2 {
    font-size: 1.25rem;
    margin: 32px 0 12px;
    color: var(--primary);
    font-family: 'Inter', sans-serif;
}

.policy-content p {
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.policy-content ul {
    margin: 16px 0 16px 24px;
    color: var(--text-dark);
}

.policy-content li {
    margin-bottom: 8px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.policy-content a {
    color: var(--primary);
}

.policy-content a:hover {
    text-decoration: underline;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 0.9rem;
}

.back-link:hover {
    gap: 12px;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .hero-grid,
    .steps-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid-wrapper {
        grid-template-columns: 1fr;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-image {
        order: -1;
    }

    .steps-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-links.active {
        display: flex;
        position: fixed;
        top: 84px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 20px;
        gap: 4px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links a {
        display: block;
        padding: 14px 20px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .services-grid,
    .games-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .policy-content {
        padding: 32px 20px;
        margin: 0 16px;
    }

    .hero-image img,
    .steps-image img,
    .about-image img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .age-banner-content {
        font-size: 0.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .about-buttons {
        flex-direction: column;
    }

    .about-buttons .btn {
        width: 100%;
    }

    .member-image {
        width: 140px;
        height: 140px;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Selection styling */
::selection {
    background: var(--primary);
    color: var(--text-light);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}
