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

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

/* Prevent horizontal scroll */
img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Ensure no element causes horizontal overflow */
section, div, header, footer, main {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px 80px 0;
    overflow: hidden;
}

.hero-admin-icon {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: #ffffff;
    z-index: 20;
    transition: color 0.3s ease, transform 0.3s ease;
}

.hero-admin-icon:hover {
    color: #4f76ff;
    transform: scale(1.05);
}

.hero-top-banner {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 80px;
    padding: 10px 40px;
    max-width: 1200px;
    width: 100%;
    align-self: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    margin-bottom: 0;
    z-index: 5;
}

.hero-banner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
}

.hero-logo-img {
    max-width: 70px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.hero-logo-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #2ecc71, #1e8449);
    border: 6px solid #f1c40f;
}

.hero-banner-text {
    color: #000;
    font-size: 13px;
    line-height: 1.3;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-banner-text p:first-child {
    font-size: 15px;
    font-weight: 700;
}

.hero-banner-text p:nth-child(3) {
    font-size: 18px;
    font-weight: 800;
}

.hero-content {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    max-width: none;
    width: 100%;
    min-height: 0;
}

.hero-circle {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    max-width: 720px;
    height: 520px;
    border-radius: 0 50% 50% 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero-text-block {
    position: relative;
    padding-top: 0;
    margin-left: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    z-index: 2;
}

.hero-title {
    font-size: 110px;
    font-weight: 300;
    letter-spacing: 8px;
    line-height: 1.02;
    text-transform: uppercase;
}

.hero-btn {
    position: absolute;
    bottom: 80px;
    right: 80px;
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 15px 40px;
    font-size: 16px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    text-decoration: none;
}

.hero-btn:hover {
    background: white;
    color: #000;
}

.hero-btn i {
    font-size: 20px;
}

/* Wisata Section */
.wisata-section {
    background: #22262d;
    padding: 80px 0;
    min-height: 100vh;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: sticky;
    top: 0;
    z-index: 5;
    padding: 20px 0;
    background: #22262d;
}

.section-title {
    font-size: 60px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #ffffff !important;
    text-transform: uppercase;
}

.section-title .highlight {
    color: #ffffff;
}

.admin-icon {
    font-size: 50px;
    color: white;
    transition: color 0.3s ease;
}

.admin-icon:hover {
    color: #ff4444;
}

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

.wisata-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.wisata-card {
    background: #1a1a2e;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.wisata-card-link:hover .wisata-card {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
}

.wisata-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wisata-info {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a1a2e;
}

.wisata-info h3 {
    color: white;
    font-size: 18px;
    font-weight: 400;
}

.wisata-link {
    color: white;
    font-size: 24px;
    transition: color 0.3s ease;
    display: inline-block;
}

.wisata-card-link:hover .wisata-link {
    color: #ff4444;
}

/* Chatbot Section */
.chatbot-section {
    position: relative;
    height: 100vh;
    background: #22262d;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.chatbot-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 80px;
}

.chatbot-wrapper {
    display: flex;
    flex-direction: column;
    gap: 140px;
    width: 100%;
    max-width: 1200px;
    padding: 0 80px;
}

.chatbot-row {
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: flex-start;
}

.chatbot-row-bottom {
    margin-left: 240px;
}

.chatbot-robot {
    position: relative;
}

.robot-image {
    width: 210px;
    height: auto;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.6));
}

.chatbot-bubble {
    display: block;
    max-width: 980px;
    background: #4f76ff;
    padding: 30px 80px;
    border-radius: 999px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: left;
    color: #ffffff;
}

.chatbot-bubble-primary {
    background: #4f76ff;
    box-shadow: 0 30px 40px rgba(79, 118, 255, 0.7);
}

.chatbot-bubble-secondary {
    background: #4f76ff;
    box-shadow: 0 30px 40px rgba(79, 118, 255, 0.7);
    color: white;
}

.chatbot-bubble:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
}

.chatbot-bubble h3 {
    color: white;
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 4px;
}

.chatbot-bubble p {
    color: #ff3333;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.chatbot-bubble::before {
    content: '';
    position: absolute;
    left: -70px;
    top: 60%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    background: #4f76ff;
    border-radius: 50%;
    box-shadow: -10px 0 0 #151820;
}

.chatbot-bubble-secondary::before {
    background: #4a72ff;
}

/* Lokasi Section */
.lokasi-section {
    background: #22262d;
    padding: 80px 0;
}

.lokasi-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.lokasi-map-box {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Footer Section */
.footer-section {
    background: #22262d;
    color: white;
    padding: 60px 0 40px;
}

.footer-title {
    text-align: center;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h4 {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #5b7fff;
}

.footer-column p {
    font-size: 14px;
    line-height: 2;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #5b7fff;
    transform: translateY(-5px);
}

.social-links i {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .hero-text-block {
        margin-left: 80px;
    }
    
    .hero-circle {
        width: 50%;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 90px;
    }
    
    .hero-text-block {
        margin-left: 60px;
    }
    
    .hero-circle {
        width: 45%;
        height: 450px;
    }
    
    .wisata-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .chatbot-wrapper {
        padding: 0 40px;
        gap: 100px;
    }
    
    .chatbot-bubble {
        max-width: 700px;
        padding: 25px 60px;
    }
    
    .chatbot-bubble h3 {
        font-size: 42px;
    }
    
    .chatbot-bubble p {
        font-size: 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-overlay {
        padding: 20px 40px 0;
    }
    
    .hero-title {
        font-size: 70px;
        letter-spacing: 6px;
    }
    
    .hero-text-block {
        margin-left: 40px;
    }
    
    .hero-circle {
        width: 40%;
        height: 400px;
    }
    
    .hero-btn {
        bottom: 60px;
        right: 60px;
        padding: 14px 35px;
        font-size: 15px;
    }
    
    .hero-admin-icon {
        top: 15px;
        right: 30px;
        font-size: 35px;
    }
    
    .hero-top-banner {
        padding: 10px 30px;
    }
    
    .hero-logo-img {
        max-width: 60px;
        max-height: 60px;
    }
    
    .hero-banner-text {
        font-size: 11px;
    }
    
    .hero-banner-text p:first-child {
        font-size: 13px;
    }
    
    .hero-banner-text p:nth-child(3) {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 50px;
    }
    
    .chatbot-wrapper {
        gap: 80px;
        padding: 0 30px;
    }
    
    .chatbot-row-bottom {
        margin-left: 180px;
    }
    
    .robot-image {
        width: 180px;
    }
    
    .chatbot-bubble {
        padding: 22px 50px;
    }
    
    .chatbot-bubble h3 {
        font-size: 36px;
    }
    
    .chatbot-bubble p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-section {
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        position: relative;
    }
    
    .hero-overlay {
        padding: 10px 10px 15px;
        justify-content: flex-start;
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .hero-admin-icon {
        top: 10px;
        right: 10px;
        font-size: 26px;
        z-index: 25;
        position: fixed;
    }
    
    .hero-top-banner {
        padding: 10px 14px;
        border-radius: 18px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin-bottom: 15px;
        width: 100%;
        max-width: 100%;
        align-self: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        flex-shrink: 0;
    }
    
    .hero-banner-logo {
        margin-right: 0;
        margin-bottom: 0;
        display: flex;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .hero-logo-img {
        max-width: 55px;
        max-height: 55px;
        width: auto;
        height: auto;
    }
    
    .hero-logo-circle {
        width: 50px;
        height: 50px;
        border: 3px solid #f1c40f;
    }
    
    .hero-banner-text {
        font-size: 8.5px;
        line-height: 1.35;
        flex: 1;
        text-align: center;
        width: 100%;
        word-wrap: break-word;
    }
    
    .hero-banner-text p {
        margin: 1.5px 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-banner-text p:first-child {
        font-size: 9.5px;
        font-weight: 700;
    }
    
    .hero-banner-text p:nth-child(2) {
        font-size: 7.5px;
    }
    
    .hero-banner-text p:nth-child(3) {
        font-size: 10px;
        font-weight: 800;
        margin-top: 3px;
    }
    
    .hero-banner-text p:last-child {
        font-size: 6.5px;
        margin-top: 3px;
        line-height: 1.25;
    }
    
    .hero-content {
        position: relative;
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 15px 10px 25px;
        min-height: 0;
        width: 100%;
        max-width: 100%;
        flex-shrink: 0;
        gap: 20px;
    }
    
    .hero-circle {
        display: none;
    }
    
    .hero-text-block {
        position: relative;
        margin-left: 0;
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
        text-align: center;
        z-index: 2;
        flex: 0 0 auto;
        margin-bottom: 0;
    }
    
    .hero-title {
        font-size: 36px;
        letter-spacing: 2px;
        line-height: 1.1;
        margin: 0;
        padding: 0;
        text-align: center;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        word-wrap: break-word;
        overflow-wrap: break-word;
        display: block;
    }
    
    .hero-title br {
        display: block;
        margin: 4px 0;
    }
    
    .hero-btn {
        position: relative;
        bottom: auto;
        right: auto;
        left: auto;
        margin-top: 0;
        padding: 12px 28px;
        font-size: 13px;
        letter-spacing: 1.2px;
        z-index: 10;
        align-self: center;
        border-width: 2px;
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .section-title {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .section-header {
        padding: 15px 0;
        margin-bottom: 40px;
    }
    
    .wisata-section {
        padding: 50px 0;
    }
    
    .wisata-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .wisata-image {
        height: 220px;
    }
    
    .wisata-info {
        padding: 20px;
    }
    
    .wisata-info h3 {
        font-size: 16px;
    }
    
    .chatbot-section {
        min-height: auto;
        padding: 30px 0;
        height: auto;
    }
    
    .chatbot-overlay {
        padding-top: 30px;
        height: auto;
        min-height: auto;
    }
    
    .chatbot-wrapper {
        gap: 30px;
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }

    .chatbot-row,
    .chatbot-row-bottom {
        flex-direction: column;
        align-items: center;
        margin-left: 0;
        gap: 15px;
        width: 100%;
    }

    .chatbot-robot {
        order: 1;
    }

    .chatbot-bubble {
        padding: 18px 20px;
        max-width: 100%;
        width: 100%;
        border-radius: 25px;
        order: 2;
        box-sizing: border-box;
    }
    
    .chatbot-bubble::before {
        display: none;
    }

    .chatbot-bubble h3 {
        font-size: 20px;
        text-align: center;
        margin-bottom: 6px;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .chatbot-bubble p {
        font-size: 13px;
        text-align: center;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin: 0;
    }

    .robot-image {
        width: 100px;
        height: auto;
    }
    
    .lokasi-section {
        padding: 50px 0;
    }
    
    .lokasi-map-box iframe {
        height: 300px;
    }
    
    .footer-section {
        padding: 40px 0 30px;
    }
    
    .footer-title {
        font-size: 22px;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column h4 {
        font-size: 16px;
    }
    
    .footer-column p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero-section {
        min-height: 100vh;
        max-height: 100vh;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .hero-overlay {
        padding: 8px 8px 12px;
        gap: 12px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-admin-icon {
        top: 8px;
        right: 8px;
        font-size: 22px;
    }
    
    .hero-top-banner {
        padding: 8px 12px;
        border-radius: 14px;
        gap: 8px;
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        text-align: center;
        margin-bottom: 12px;
    }
    
    .hero-banner-logo {
        margin-right: 0;
        margin-bottom: 0;
    }
    
    .hero-logo-img {
        max-width: 45px;
        max-height: 45px;
    }
    
    .hero-logo-circle {
        width: 45px;
        height: 45px;
    }
    
    .hero-banner-text {
        font-size: 7.5px;
        line-height: 1.3;
    }
    
    .hero-banner-text p:first-child {
        font-size: 8.5px;
    }
    
    .hero-banner-text p:nth-child(2) {
        font-size: 7px;
    }
    
    .hero-banner-text p:nth-child(3) {
        font-size: 9px;
    }
    
    .hero-banner-text p:last-child {
        font-size: 6px;
    }
    
    .hero-content {
        padding: 12px 8px 20px;
        width: 100%;
        max-width: 100%;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 30px;
        letter-spacing: 1.5px;
        line-height: 1.1;
    }
    
    .hero-title br {
        margin: 3px 0;
    }
    
    .hero-text-block {
        margin-bottom: 0;
        padding: 0 8px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-btn {
        position: relative;
        bottom: auto;
        right: auto;
        padding: 10px 22px;
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .chatbot-bubble {
        padding: 16px 18px;
    }
    
    .chatbot-bubble h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .chatbot-bubble p {
        font-size: 12px;
    }
    
    .robot-image {
        width: 90px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .chatbot-bubble h3 {
        font-size: 20px;
    }
    
    .chatbot-bubble p {
        font-size: 12px;
    }
    
    .robot-image {
        width: 100px;
    }
    
    .wisata-info h3 {
        font-size: 14px;
    }
    
    .footer-title {
        font-size: 18px;
    }
}

/* Admin Dashboard Styles */
body:not(.public) {
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.container.small {
    max-width: 600px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

@media (max-width: 768px) {
    .container.small {
        padding: 25px 20px;
        margin-top: 20px;
    }
    
    .container {
        padding: 15px;
    }
    
    .thumb {
        max-width: 100%;
        width: 100%;
    }
}

.container h1, .container h2 {
    color: #1a1a2e;
    margin-bottom: 20px;
}

.container p {
    margin: 10px 0;
}

.container a {
    color: #5b7fff;
    text-decoration: none;
}

.container a:hover {
    text-decoration: underline;
}

/* Form Styles */
form {
    margin-top: 20px;
}

form label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

form input[type="text"],
form input[type="password"],
form input[type="file"],
form input:not([type="submit"]):not([type="button"]) {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

form input[type="text"]:focus,
form input[type="password"]:focus,
form input:not([type="submit"]):not([type="button"]):focus,
form textarea:focus {
    outline: none;
    border-color: #5b7fff;
}

form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    min-height: 100px;
    font-family: Arial, sans-serif;
    transition: border-color 0.3s ease;
}

form button,
form input[type="submit"] {
    background: #5b7fff;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 20px;
}

form button:hover,
form input[type="submit"]:hover {
    background: #4a67e6;
}

.actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.actions a {
    padding: 12px 30px;
    background: #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.actions a:hover {
    background: #ccc;
}

/* Alert and Notice Messages */
.alert,
.notice {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.notice {
    background: #efe;
    color: #3c3;
    border: 1px solid #cfc;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: table;
}

.table th,
.table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.table th {
    background: #1a1a2e;
    color: white;
    font-weight: 500;
}

.table tr:hover {
    background: #f5f5f5;
}

/* Responsive Table */
@media (max-width: 768px) {
    .table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .table th,
    .table td {
        padding: 10px 8px;
        font-size: 14px;
        white-space: nowrap;
    }
    
    .table th {
        font-size: 12px;
    }
    
    .thumb-small {
        max-width: 60px;
    }
}

.thumb {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.thumb-small {
    max-width: 100px;
    height: auto;
    border-radius: 4px;
}

.login-link {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.login-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

