:root {
    --mr-bg: #f6efe7;
    --mr-text: #26352f;
    --mr-soft: #7d8f83;
    --mr-primary: #6f8f72;
    --mr-primary-dark: #506f54;
    --mr-card: rgba(255, 255, 255, 0.72);
    --mr-white: #ffffff;
    --mr-brown: #96663f;
    --mr-brown-dark: #7d5233;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--mr-bg);
    color: var(--mr-text);
}

/* =========================
   HOME / LANDING
========================= */

.mr-page {
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.mr-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 50;
    background: rgba(246, 239, 231, 0.82);
    backdrop-filter: blur(18px);
}

.mr-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    text-decoration: none;
    color: var(--mr-text);
}

.mr-logo span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--mr-primary);
    color: white;
    display: grid;
    place-items: center;
    font-weight: bold;
}

.mr-logo strong {
    font-weight: 700;
}

.mr-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.mr-nav a {
    color: var(--mr-text);
    text-decoration: none;
    font-size: 15px;
}

.mr-login,
.mr-user-btn {
    padding: 13px 22px;
    border-radius: 999px;
    background: var(--mr-primary);
    color: white !important;
    box-shadow: 0 10px 25px rgba(38, 53, 47, 0.08);
    font-weight: 800;
}

.mr-hero {
    min-height: 100vh;
    padding: 140px 7% 80px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

.mr-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1516589178581-6cd7833ae3b2?auto=format&fit=crop&w=1800&q=80');
    background-size: cover;
    background-position: center;
    animation: mrBackgroundLife 24s ease-in-out infinite alternate;
    z-index: 0;
}

.mr-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(246,239,231,0.95) 15%,
        rgba(246,239,231,0.78) 45%,
        rgba(246,239,231,0.35) 100%
    );
    z-index: 1;
}

@keyframes mrBackgroundLife {
    0% {
        transform: scale(1) translateX(0) translateY(0);
    }

    100% {
        transform: scale(1.12) translateX(-25px) translateY(-12px);
    }
}

.mr-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.5;
    animation: mrFloat 10s ease-in-out infinite alternate;
}

.orb-1 {
    width: 320px;
    height: 320px;
    background: #c9d8bf;
    top: 16%;
    left: -80px;
}

.orb-2 {
    width: 220px;
    height: 220px;
    background: #ead2bd;
    bottom: 10%;
    right: 8%;
    animation-delay: 2s;
}

.orb-3 {
    width: 160px;
    height: 160px;
    background: #d8e5dc;
    top: 18%;
    right: 35%;
    animation-delay: 4s;
}

@keyframes mrFloat {
    from {
        transform: translateY(0) translateX(0) scale(1);
    }

    to {
        transform: translateY(-30px) translateX(24px) scale(1.08);
    }
}

.mr-hero-content,
.mr-hero-card {
    position: relative;
    z-index: 2;
}

.mr-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--mr-primary-dark);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
}

.mr-hero h1 {
    font-size: clamp(44px, 6vw, 82px);
    line-height: 0.98;
    margin: 0 0 26px;
    max-width: 760px;
}

.mr-hero p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--mr-soft);
    max-width: 680px;
}

.mr-actions {
    display: flex;
    gap: 16px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.mr-btn,
.mr-cta-btn,
.mr-btn-primary,
.mr-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none !important;
    font-weight: 800;
    border: none;
    cursor: pointer;
}

.mr-btn-primary,
.mr-cta-btn {
    background: var(--mr-brown);
    color: white !important;
    box-shadow: 0 18px 35px rgba(80, 50, 30, 0.18);
}

.mr-btn-primary:hover,
.mr-cta-btn:hover {
    background: var(--mr-brown-dark);
    transform: translateY(-2px);
}

.mr-btn-secondary {
    background: white;
    color: var(--mr-text) !important;
}

.mr-hero-card {
    position: relative;
}

.mr-image-frame {
    border-radius: 38px;
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(38, 53, 47, 0.18);
    transform: rotate(2deg);
}

.mr-image-frame img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
    animation: mrImageLife 14s ease-in-out infinite alternate;
}

@keyframes mrImageLife {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

.mr-floating-note {
    position: absolute;
    left: -25px;
    bottom: 50px;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(14px);
    padding: 18px 22px;
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(38, 53, 47, 0.14);
}

.mr-floating-note strong,
.mr-floating-note span {
    display: block;
}

.mr-floating-note span {
    color: var(--mr-soft);
    margin-top: 4px;
}

.mr-section {
    padding: 95px 7%;
    position: relative;
    z-index: 2;
}

.mr-section-title {
    max-width: 760px;
    margin-bottom: 40px;
}

.mr-section-title span {
    color: var(--mr-primary-dark);
    font-weight: 700;
}

.mr-section h2 {
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.08;
    margin: 12px 0 0;
}

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

.mr-services article {
    background: var(--mr-card);
    backdrop-filter: blur(16px);
    padding: 34px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(38, 53, 47, 0.08);
}

.mr-services h3 {
    margin: 0 0 14px;
    font-size: 24px;
}

.mr-services p {
    line-height: 1.7;
    color: var(--mr-soft);
}

.mr-quote {
    padding: 80px 7%;
    background: #4f6d55;
    color: white;
    text-align: center;
}

.mr-quote p {
    font-size: clamp(30px, 5vw, 58px);
    line-height: 1.15;
    max-width: 1000px;
    margin: auto;
}

.mr-booking-preview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.mr-booking-preview p {
    max-width: 680px;
    color: var(--mr-soft);
    line-height: 1.7;
    font-size: 18px;
}

.mr-footer {
    padding: 36px 7%;
    display: flex;
    justify-content: space-between;
    background: #26352f;
    color: white;
}

/* =========================
   AUTH
========================= */

.mr-auth-body {
    margin: 0;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background: #f6efe7;
    color: #26352f;
    overflow-x: hidden;
    overflow-y: auto;
}

.mr-auth-bg {
    position: fixed;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1516589178581-6cd7833ae3b2?auto=format&fit=crop&w=1800&q=80');
    background-size: cover;
    background-position: center;
    animation: mrBackgroundLife 26s ease-in-out infinite alternate;
    z-index: 0;
}

.mr-auth-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(246,239,231,0.96),
        rgba(246,239,231,0.86),
        rgba(246,239,231,0.55)
    );
    z-index: 1;
}

.mr-auth-page {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: grid;
    place-items: start center;
    padding: 40px 20px;
}

.mr-auth-brand {
    position: fixed;
    top: 32px;
    left: 7%;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #26352f;
    font-size: 24px;
}

.mr-auth-brand span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #6f8f72;
    color: white;
    display: grid;
    place-items: center;
    font-weight: bold;
}

.mr-auth-card {
    width: 100%;
    max-width: 460px;
    padding: 42px;
    border-radius: 34px;
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 90px rgba(38,53,47,0.18);
}

.mr-auth-title span {
    color: #506f54;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: .08em;
}

.mr-auth-title h1 {
    margin: 10px 0 12px;
    font-size: 38px;
    line-height: 1.05;
}

.mr-auth-title p {
    margin: 0 0 28px;
    color: #7d8f83;
    line-height: 1.6;
}

.mr-auth-form {
    display: grid;
    gap: 18px;
}

.mr-auth-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
}

.mr-auth-form input[type="email"],
.mr-auth-form input[type="password"],
.mr-auth-form input[type="text"] {
    width: 100%;
    height: 50px;
    border: 1px solid rgba(80,111,84,0.22);
    border-radius: 16px;
    padding: 0 16px;
    font-size: 16px;
    background: rgba(255,255,255,0.9);
    outline: none;
}

.mr-auth-form input:focus {
    border-color: #6f8f72;
    box-shadow: 0 0 0 4px rgba(111,143,114,0.15);
}

.mr-auth-form small {
    display: block;
    color: #b33b3b;
    margin-top: 6px;
}

.mr-check {
    display: flex !important;
    align-items: center;
    gap: 8px;
    color: #7d8f83;
    font-weight: 400 !important;
}

.mr-auth-btn {
    height: 52px;
    border: none;
    border-radius: 999px;
    background: #6f8f72;
    color: white;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 18px 35px rgba(80,111,84,0.25);
}

.mr-auth-secondary-btn {
    height: 52px;
    border: none;
    border-radius: 999px;
    background: white;
    color: #506f54;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
}

.mr-auth-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.mr-auth-links a {
    color: #506f54;
    text-decoration: none;
    font-weight: 700;
}

.mr-auth-link-btn {
    padding: 11px 18px;
    border-radius: 999px;
    background: white;
    box-shadow: 0 10px 25px rgba(38,53,47,0.08);
}

.mr-auth-error-box {
    margin-bottom: 22px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(180, 55, 55, 0.10);
    color: #8d2d2d;
    border: 1px solid rgba(180, 55, 55, 0.22);
}

.mr-auth-error-box strong {
    display: block;
    margin-bottom: 8px;
}

.mr-auth-error-box ul {
    margin: 0;
    padding-left: 18px;
}

.mr-auth-success-box {
    margin-bottom: 22px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(111,143,114,0.12);
    color: #506f54;
    border: 1px solid rgba(111,143,114,0.25);
    font-weight: 700;
}

/* =========================
   USER MENU
========================= */

.mr-user-menu {
    position: relative;
}

.mr-user-btn {
    height: 58px;
    padding: 0 26px;
    border: none;
    border-radius: 999px;
    background: #6f8f72;
    color: white;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(80,111,84,0.20);
    transition: all .2s ease;
}

.mr-user-btn:hover {
    transform: translateY(-2px);
    background: #5c7b60;
}

.mr-user-dropdown {
    position: absolute;
    top: 72px;
    right: 0;
    width: 240px;

    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(20px);

    border-radius: 26px;

    box-shadow: 0 30px 60px rgba(38,53,47,0.16);

    padding: 14px;

    display: none;
    flex-direction: column;
    gap: 6px;

    z-index: 999;
}

.mr-user-dropdown.active {
    display: flex;
}

.mr-user-dropdown a,
.mr-user-dropdown button {

    width: 100%;

    border: none;
    background: transparent;

    text-align: left;

    padding: 15px 18px;

    border-radius: 16px;

    color: #26352f;

    text-decoration: none;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;

    transition: all .2s ease;
}

.mr-user-dropdown a:hover,
.mr-user-dropdown button:hover {

    background: rgba(111,143,114,0.12);

    transform: translateX(2px);
}

/* =========================
   PRIVATE / DASHBOARD
========================= */

.mr-private-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f1e9 0%, #efe1d4 100%);
}

.mr-private-header {
    height: 76px;
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(60, 40, 25, 0.08);
}

.mr-private-logo {
    text-decoration: none;
    color: #3a2a23;
    font-size: 22px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.mr-private-logo span {
    background: #8b5e3c;
    color: white;
    padding: 8px 10px;
    border-radius: 12px;
    font-weight: 800;
}

.mr-private-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.mr-private-nav a,
.mr-private-nav button {
    color: #4a362c;
    text-decoration: none;
    font-weight: 700;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.mr-dashboard {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
}

.mr-dashboard-card {
    width: 100%;
    max-width: 850px;
    background: white;
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 30px 80px rgba(71, 45, 28, 0.16);
}

.mr-dashboard-badge {
    display: inline-block;
    background: #f0e3d8;
    color: #8b5e3c;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 20px;
}

.mr-dashboard-card h1 {
    font-size: 38px;
    margin: 0 0 18px;
}

.mr-dashboard-card p {
    font-size: 18px;
    color: #6c5a51;
    line-height: 1.6;
    max-width: 680px;
}

.mr-dashboard-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

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

@media (max-width: 900px) {
    .mr-header {
        position: relative;
        flex-direction: column;
        gap: 20px;
    }

    .mr-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    .mr-hero {
        grid-template-columns: 1fr;
        padding-top: 60px;
    }

    .mr-image-frame img {
        height: 420px;
    }

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

    .mr-booking-preview {
        flex-direction: column;
        align-items: flex-start;
    }

    .mr-footer {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 700px) {
    .mr-private-header {
        padding: 18px 20px;
        height: auto;
        min-height: 76px;
        flex-direction: column;
        gap: 14px;
    }

    .mr-private-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .mr-dashboard-card {
        padding: 30px 22px;
        border-radius: 24px;
    }

    .mr-dashboard-card h1 {
        font-size: 30px;
    }

    .mr-dashboard-actions {
        flex-direction: column;
    }

    .mr-btn-primary,
    .mr-btn-secondary,
    .mr-cta-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .mr-auth-brand {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 24px;
    }
}

.mr-contact-form {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.mr-contact-form label {
    font-weight: 800;
}

.mr-contact-form input,
.mr-contact-form textarea {
    width: 100%;
    border: 1px solid rgba(80,111,84,0.22);
    border-radius: 18px;
    padding: 16px;
    font-size: 16px;
    font-family: inherit;
    background: rgba(255,255,255,0.9);
    outline: none;
}

.mr-contact-form textarea {
    resize: vertical;
}

.mr-contact-box {
    margin-top: 24px;
}

.mr-profile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 30px 0;
}

.mr-profile-item {
    background: #f7f1ea;
    border-radius: 22px;
    padding: 22px;
}

.mr-profile-item span {
    display: block;
    color: #7d8f83;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.mr-profile-item strong {
    color: #26352f;
    font-size: 17px;
}

@media (max-width: 700px) {
    .mr-profile-grid {
        grid-template-columns: 1fr;
    }
}

.mr-table-wrap {
    width: 100%;
    overflow-x: auto;
    margin-top: 28px;
}

.mr-table {
    width: 100%;
    border-collapse: collapse;
}

.mr-table th {
    text-align: left;
    padding: 14px;
    color: #506f54;
    font-size: 13px;
    text-transform: uppercase;
}

.mr-table td {
    padding: 16px 14px;
    border-top: 1px solid rgba(80,111,84,0.14);
}

.mr-status {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    background: #f0e3d8;
    color: #7d5233;
}

.mr-status.confirmada {
    background: rgba(111,143,114,0.16);
    color: #506f54;
}

.mr-status.cancelada {
    background: rgba(180,55,55,0.12);
    color: #8d2d2d;
}

.mr-btn-danger {
    border: none;
    border-radius: 999px;
    padding: 10px 16px;
    background: #8d2d2d;
    color: white;
    font-weight: 800;
    cursor: pointer;
}

input[type="date"] {
    width: 100%;
    height: 54px;
    border: 1px solid rgba(80,111,84,0.18);
    border-radius: 18px;
    padding: 0 16px;
    font-size: 16px;
    font-family: inherit;
    background: rgba(255,255,255,0.92);
    color: #26352f;
    outline: none;
    transition: all .2s ease;
}

input[type="date"]:focus {
    border-color: #6f8f72;
    box-shadow: 0 0 0 4px rgba(111,143,114,0.12);
}

input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: .75;
    transition: .2s;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    transform: scale(1.08);
}

.mr-about-section {
    padding: 110px 7%;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
    background: linear-gradient(135deg, #f6efe7 0%, #efe1d4 100%);
}

.mr-about-photo {
    position: relative;
    border-radius: 38px;
    overflow: hidden;
    box-shadow: 0 35px 90px rgba(38, 53, 47, 0.18);
    transform: rotate(-2deg);
}

.mr-about-photo img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.mr-about-photo:hover img {
    transform: scale(1.06);
}

.mr-about-content h2 {
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.02;
    margin: 12px 0 22px;
    color: #26352f;
}

.mr-about-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #7d8f83;
    max-width: 680px;
}

.mr-about-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.mr-about-modal.active {
    display: flex;
}

.mr-about-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(24, 34, 30, 0.38);
    backdrop-filter: blur(14px);
    animation: mrFadeIn .35s ease forwards;
}

.mr-about-modal-card {
    position: relative;
    width: min(920px, 100%);
    max-height: 86vh;
    overflow-y: auto;

    background: rgba(246, 239, 231, 0.72);
    backdrop-filter: blur(26px) saturate(135%);
    -webkit-backdrop-filter: blur(26px) saturate(135%);

    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 36px;
    padding: 48px;

    box-shadow: 0 45px 120px rgba(0, 0, 0, 0.28);

    transform-origin: left center;
    animation: mrModalFromPhoto .65s cubic-bezier(.16, 1, .3, 1) forwards;
}

.mr-about-modal-card h2 {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    margin: 14px 0 24px;
    color: #26352f;
}

.mr-about-modal-card p {
    font-size: 18px;
    line-height: 1.75;
    color: #50645b;
    margin: 0 0 18px;
}

.mr-about-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: #6f8f72;
    color: white;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
}

@keyframes mrFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes mrModalIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(.94);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 900px) {
    .mr-about-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 80px 7%;
    }

    .mr-about-photo img {
        height: 420px;
    }

    .mr-about-modal-card {
        padding: 34px 24px;
        border-radius: 28px;
    }
}

@keyframes mrModalFromPhoto {
    0% {
        opacity: 0;
        transform: translateX(-260px) translateY(40px) scale(.58) rotate(-4deg);
        filter: blur(12px);
    }

    55% {
        opacity: 1;
        transform: translateX(18px) translateY(0) scale(1.03) rotate(1deg);
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1) rotate(0);
        filter: blur(0);
    }
}

.flatpickr-calendar {
    border-radius: 24px !important;
    border: none !important;
    box-shadow: 0 25px 60px rgba(0,0,0,.18) !important;
    overflow: hidden;
    font-family: inherit;
}

.flatpickr-months {
    padding: 12px 10px 0 10px;
}

.flatpickr-current-month {
    font-size: 16px !important;
    font-weight: 700 !important;
}

.flatpickr-weekday {
    font-weight: 600 !important;
    color: #64748b !important;
}

.flatpickr-day {
    border-radius: 14px !important;
    transition: all .15s ease;
}

.flatpickr-day:hover {
    background: #eef2ff !important;
}

.flatpickr-day.selected {
    background: #7da07d !important;
    border-color: #7da07d !important;
    color: white !important;
}

.flatpickr-input[readonly] {
    background: white !important;
    cursor: pointer;
}

.mr-auth-success-box {
    background: rgba(125, 160, 125, 0.16);
    color: #466b46;
    border: 1px solid rgba(125, 160, 125, 0.35);
    border-radius: 18px;
    padding: 14px 16px;
    margin-bottom: 18px;
    font-weight: 600;
}

.gamagest-powered{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-top:20px;
    color:#6b7280;
    text-decoration:none;
    font-size:14px;
    transition:all .3s ease;
}

.gamagest-powered:hover{
    color:#d4af37;
}

.gamagest-icon{
    width:28px;
    height:28px;
    border-radius:8px;
    background:linear-gradient(135deg,#d4af37,#f5e7a1);
    color:#11131a;
    font-weight:900;
    display:flex;
    align-items:center;
    justify-content:center;
    animation:gamagestPulse 2.5s infinite;
}

@keyframes gamagestPulse{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.15) rotate(-8deg);
    }
    100%{
        transform:scale(1);
    }
}

.gamagest-badge{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:9999;

    animation:floatGamagest 5s ease-in-out infinite;
}

.gamagest-badge img{
    width:180px;
    transition:.3s;
    opacity:.92;
}

.gamagest-badge:hover img{
    transform:scale(1.06);
    opacity:1;
    filter:drop-shadow(0 0 12px rgba(212,175,55,.6));
}

@keyframes floatGamagest{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
    100%{
        transform:translateY(0);
    }
}

.gamagest-badge{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:99999;
    opacity:.75;
}

.gamagest-badge:hover{
    opacity:1;
}

.gamagest-badge img{
    width:160px;
    filter:drop-shadow(0 0 10px rgba(212,175,55,.35));
}