:root {
    --primary: #A2B518;
    --primary-rgb: 162, 181, 24;
    --accent: #C9A96E;
    --dark: #1F383D;
    --text-light: #6B7280;
    --border: #E5E7EB;
    --bg-warm: #FAFAFA;
    --white: #FFFFFF;
    --primary-hover: #7A8C0E;
}
.attractions-hero {
    position: relative;
    height: 420px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.attractions-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/attractions/crypto-arena/crypto-arena.webp') center / cover no-repeat;
    opacity: 0.3;
}
.attractions-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31,56,61,0.92) 0%, rgba(31,56,61,0.7) 50%, rgba(31,56,61,0.85) 100%);
    z-index: 1;
}
.attractions-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
}
.attractions-hero-title {
    font-family: 'Lora', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 1rem;
    letter-spacing: 0.02em;
}
.attractions-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.attractions-section {
    padding: 5rem 1.5rem;
    background: var(--bg-warm);
    overflow-x: hidden;
}
.attractions-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.attractions-title {
    font-family: 'Lora', serif;
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 0.75rem;
    position: relative;
    display: inline-block;
    opacity: 0;
    animation: slideDownFadeInPageTitle 0.8s 0.3s ease-out forwards;
}
.attractions-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}
.attractions-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--text-light);
    margin: 1.5rem auto 3.5rem;
    max-width: 640px;
    line-height: 1.7;
    font-weight: 400;
    opacity: 0;
    animation: fadeInUpSubtitle 0.8s 0.6s ease-out forwards;
}
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.todo-item-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    transform: translateY(24px);
    animation-name: fadeInUpItem;
    animation-duration: 0.6s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}
.todo-item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05), 0 20px 40px rgba(0,0,0,0.1);
}
.todo-item-card .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.todo-item-card .card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
    pointer-events: none;
}
.todo-item-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.todo-item-card:hover .card-image img {
    transform: scale(1.08);
}
.card-image-gallery {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
}
.card-image-gallery .gallery-thumbnail {
    width: 72px;
    height: 54px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
}
.card-image-gallery .gallery-thumbnail:hover {
    opacity: 0.85;
    transform: scale(1.06);
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.3);
}
.todo-item-card .card-content {
    padding: 1.75rem;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.todo-item-card .card-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.todo-item-card .card-title-link:hover .card-title {
    color: var(--primary);
}
.todo-item-card .card-title {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--dark);
    transition: color 0.3s ease;
    line-height: 1.3;
}
.todo-item-card .card-distance {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--primary);
    margin: 0 0 0.6rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.todo-item-card .card-distance i {
    font-size: 0.8rem;
}
.todo-item-card .card-address {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
}
.todo-item-card .card-address i {
    color: var(--accent);
    font-size: 0.8rem;
    flex-shrink: 0;
}
.todo-item-card .card-address:hover {
    color: var(--primary);
}
.todo-item-card .card-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: #555;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 1.25rem;
}
.todo-item-card .card-description p {
    margin: 0 0 0.5rem;
}
.todo-item-card .card-description p:last-child {
    margin-bottom: 0;
}
.card-learn-more {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    background: var(--dark);
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease, transform 0.3s ease;
    align-self: flex-start;
}
.card-learn-more:hover {
    background: var(--primary);
    transform: translateY(-1px);
}
.card-learn-more i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}
.card-learn-more:hover i {
    transform: translateX(3px);
}
.card-social-links {
    margin-bottom: 0.75rem;
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}
.card-social-links .social-icon {
    font-size: 1.1rem;
    transition: transform 0.25s ease, opacity 0.25s ease;
    text-decoration: none;
    opacity: 0.85;
}
.card-social-links .social-icon:hover {
    transform: scale(1.2);
    opacity: 1;
}
.card-social-links .social-icon-facebook { color: #3b5998; }
.card-social-links .social-icon-instagram { color: #e4405f; }
.card-social-links .social-icon-twitter { color: #1da1f2; }
.card-social-links .social-icon-tiktok { color: #000000; }
.card-social-links .social-icon-youtube { color: #ff0000; }
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.88);
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}
.lightbox-modal.active {
    display: flex;
    animation: fadeInLightbox 0.3s ease-out;
}
.lightbox-content {
    position: relative;
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    animation: zoomInLightbox 0.3s ease-out;
}
.lightbox-content img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
    z-index: 1001;
    line-height: 1;
}
.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent);
    text-decoration: none;
}
@keyframes fadeInLightbox { from { opacity: 0; } to { opacity: 1; } }
@keyframes zoomInLightbox { from { transform: scale(0.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes slideDownFadeInPageTitle { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUpSubtitle { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUpItem { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 1024px) {
    .attractions-hero-title {
        font-size: 2.8rem;
    }
    .attractions-hero {
        height: 360px;
    }
}
@media (max-width: 768px) {
    .attractions-hero {
        height: 300px;
    }
    .attractions-hero-title {
        font-size: 2.2rem;
    }
    .attractions-hero-subtitle {
        font-size: 1rem;
    }
    .attractions-section {
        padding: 3rem 1rem;
    }
    .attractions-title {
        font-size: 2rem;
    }
    .attractions-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }
    .attractions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .todo-item-card .card-image {
        height: 200px;
    }
    .todo-item-card .card-title {
        font-size: 1.3rem;
    }
    .todo-item-card .card-content {
        padding: 1.25rem;
    }
    .card-social-links {
        gap: 0.6rem;
    }
    .card-social-links .social-icon {
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .attractions-hero-title {
        font-size: 1.8rem;
    }
    .attractions-hero {
        height: 260px;
    }
    .attractions-title {
        font-size: 1.7rem;
    }
}
