/* ===================================
   GRUNNSTILLINGAR OG LITIR
   =================================== */

:root {
    --primary-teal: #00d9ff;
    --primary-magenta: #ff006e;
    --primary-yellow: #ffbe0b;
    --primary-purple: #8338ec;
    --primary-green: #06ffa5;
    
    --bg-dark: #0f0f1e;
    --bg-light: #1a1a2e;
    --text-light: #ffffff;
    --text-gray: #b8b8d1;
    
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 12px 48px rgba(0, 0, 0, 0.4);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-light) 100%);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===================================
   HEADER
   =================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

.rvk-badge {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-purple));
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
}

/* ===================================
   PAGE CONTAINER
   =================================== */

.page {
    display: none;
    min-height: 100vh;
    padding-top: 80px;
}

.page.active {
    display: block;
}

/* ===================================
   FORSÍÐA
   =================================== */

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.emoji-float {
    position: absolute;
    font-size: 3rem;
    animation: float 20s infinite ease-in-out;
    opacity: 0.3;
}

.emoji-float:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.emoji-float:nth-child(2) {
    left: 70%;
    top: 30%;
    animation-delay: 2s;
}

.emoji-float:nth-child(3) {
    left: 30%;
    top: 60%;
    animation-delay: 4s;
}

.emoji-float:nth-child(4) {
    left: 80%;
    top: 70%;
    animation-delay: 6s;
}

.emoji-float:nth-child(5) {
    left: 50%;
    top: 40%;
    animation-delay: 8s;
}

.emoji-float:nth-child(6) {
    left: 20%;
    top: 80%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(5deg); }
    50% { transform: translateY(-60px) rotate(-5deg); }
    75% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 2rem;
}

.logo-title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-magenta), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.5)); }
    50% { filter: drop-shadow(0 0 40px rgba(255, 0, 110, 0.7)); }
}

.tagline {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-magenta), var(--primary-purple));
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(255, 0, 110, 0.4);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    transform: translateY(0);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 0, 110, 0.6);
}

.cta-button.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.intro-text {
    margin: 2rem 0;
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.secondary-button {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-green));
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 15px;
    cursor: pointer;
    margin: 1rem;
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.3);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.secondary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.5);
}

.parent-button {
    background: transparent;
    color: var(--text-gray);
    border: 2px solid var(--text-gray);
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.parent-button:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

/* ===================================
   QUIZ PAGE
   =================================== */

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

.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.progress-fill {
    background: linear-gradient(90deg, var(--primary-teal), var(--primary-magenta));
    height: 20px;
    border-radius: 50px;
    transition: width 0.5s ease;
    width: 0%;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    font-size: 1rem;
}

#quiz-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: var(--shadow);
}

.quiz-question {
    text-align: center;
}

.quiz-question h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-yellow);
}

/* Swipe Cards */
.swipe-container {
    position: relative;
    height: 400px;
    margin: 2rem 0;
}

.swipe-card {
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.swipe-card img {
    width: 100%;
    height: 70%;
    object-fit: cover;
}

.swipe-card .card-text {
    padding: 1.5rem;
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
}

.swipe-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.swipe-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.swipe-btn.dislike {
    background: linear-gradient(135deg, #ff4444, #cc0000);
}

.swipe-btn.like {
    background: linear-gradient(135deg, #00ff88, #00cc44);
}

.swipe-btn:hover {
    transform: scale(1.1);
}

/* Either-Or Questions */
.either-or-container {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.either-or-side {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.either-or-side:hover {
    transform: translateY(-5px);
    border-color: var(--primary-teal);
}

.either-or-side.selected {
    border-color: var(--primary-magenta);
    background: rgba(255, 0, 110, 0.2);
}

.either-or-side .icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.either-or-side h3 {
    font-size: 1.3rem;
}

.both-option {
    text-align: center;
    margin-top: 1rem;
}

.both-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-teal));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.both-btn:hover {
    transform: scale(1.05);
}

/* Emoji Selection */
.emoji-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.emoji-option {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.emoji-option:hover {
    transform: scale(1.05);
}

.emoji-option.selected {
    border-color: var(--primary-yellow);
    background: rgba(255, 190, 11, 0.2);
    animation: hop 0.3s ease;
}

@keyframes hop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.emoji-option .emoji {
    font-size: 3rem;
}

.next-btn {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-magenta));
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.next-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(131, 56, 236, 0.5);
}

.next-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===================================
   LOADING PAGE
   =================================== */

.loading-content {
    text-align: center;
    padding: 4rem 2rem;
}

.loading-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.loading-spinner {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border: 8px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-teal);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* ===================================
   RESULTS PAGE
   =================================== */

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

.results-title {
    font-size: 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.results-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Filter Button & Panel */
.filter-button {
    display: block;
    margin: 2rem auto;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-magenta));
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(131, 56, 236, 0.4);
    transition: all 0.3s ease;
}

.filter-button:hover {
    transform: translateY(-3px);
}

.filter-panel {
    max-width: 800px;
    margin: 2rem auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    display: none;
    box-shadow: var(--shadow);
}

.filter-panel.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.filter-panel h3 {
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
}

.filter-section {
    margin-bottom: 2rem;
}

.filter-section h4 {
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.filter-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
}

.filter-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-options label:hover {
    background: rgba(255, 255, 255, 0.1);
}

.filter-options input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.filter-buttons button {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.filter-buttons button:first-child {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-teal));
    color: white;
}

.filter-buttons button:last-child {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Interest Map */
.interest-map {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.map-zone {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 3px solid transparent;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.map-zone:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.zone-sports { border-color: var(--primary-green); }
.zone-sports:hover { background: rgba(6, 255, 165, 0.1); }

.zone-arts { border-color: var(--primary-magenta); }
.zone-arts:hover { background: rgba(255, 0, 110, 0.1); }

.zone-tech { border-color: var(--primary-purple); }
.zone-tech:hover { background: rgba(131, 56, 236, 0.1); }

.zone-music { border-color: var(--primary-yellow); }
.zone-music:hover { background: rgba(255, 190, 11, 0.1); }

.zone-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.zone-name {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Activity Cards */
.activity-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.activity-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.card-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-gallery {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
}

.card-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.gallery-controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: white;
    width: 12px;
    height: 12px;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.gallery-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.gallery-arrow.left { left: 10px; }
.gallery-arrow.right { right: 10px; }

.card-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.badge.beginner {
    background: linear-gradient(135deg, #00ff88, #00cc44);
    color: white;
}

.badge.intermediate {
    background: linear-gradient(135deg, #ffbe0b, #ff9500);
    color: white;
}

.badge.advanced {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: white;
}

.badge.free-trial {
    background: linear-gradient(135deg, var(--primary-magenta), var(--primary-purple));
    color: white;
}

.card-content {
    padding: 1.5rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
}

.card-location {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--primary-yellow);
}

.card-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Price Display */
.price-section {
    margin: 1.5rem 0;
}

.price-box {
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 0.8rem;
}

.price-box.full-price {
    background: rgba(255, 255, 255, 0.05);
}

.price-box.discount {
    background: rgba(6, 255, 165, 0.1);
    border: 2px solid var(--primary-green);
}

.price-box.final-price {
    background: linear-gradient(135deg, rgba(255, 190, 11, 0.2), rgba(255, 0, 110, 0.2));
    border: 3px solid var(--primary-yellow);
}

.price-box.extra-cost {
    background: rgba(0, 217, 255, 0.1);
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.3rem;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
}

.price-box.final-price .price-amount {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 0.3rem;
}

/* Card Actions */
.card-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.action-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.action-btn.primary {
    background: linear-gradient(135deg, var(--primary-magenta), var(--primary-purple));
    color: white;
}

.action-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.action-btn:hover {
    transform: translateY(-3px);
}

/* ===================================
   ALL ACTIVITIES PAGE
   =================================== */

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

.back-button {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.page-title {
    font-size: 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.page-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 3px solid transparent;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-teal);
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.4);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-yellow);
}

.category-card p {
    color: var(--text-gray);
}

/* ===================================
   MODAL
   =================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-light);
    border-radius: 30px;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-magenta);
    transform: rotate(90deg);
}

/* Reviews Section */
.reviews-section {
    margin: 2rem 0;
}

.reviews-section h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.review {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.review-author {
    color: var(--primary-teal);
    font-weight: 600;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    margin: 2rem 0;
}

.faq-section h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 0.8rem;
    overflow: hidden;
}

.faq-question {
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question-text {
    font-weight: 600;
    color: var(--primary-teal);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    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-text {
    padding: 0 1.5rem 1rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===================================
   FOOTER
   =================================== */

.site-footer {
    background: rgba(26, 26, 46, 0.95);
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

.footer-content p {
    color: var(--text-gray);
    margin: 0.5rem 0;
}

.footer-content p:first-child {
    color: var(--primary-teal);
    font-weight: 600;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 768px) {
    .logo-title {
        font-size: 2.5rem;
    }
    
    .cta-button {
        padding: 1.2rem 2rem;
        font-size: 1.2rem;
    }
    
    .interest-map {
        grid-template-columns: 1fr;
    }
    
    .activity-cards {
        grid-template-columns: 1fr;
    }
    
    .either-or-container {
        flex-direction: column;
    }
    
    .emoji-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
}

/* ===================================
   SCROLLBAR
   =================================== */

::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-purple));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-magenta), var(--primary-yellow));
}