/* Source: screens-date.css — Date system styles */

/* Bro Rogue — Date System + Beach Screen CSS */

/* ═══════════════════════════════════════════════════════════
   BEACH INTERACTION SCREEN
   ═══════════════════════════════════════════════════════════ */

.beachInteractionContainer {
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    padding: 2rem;
}

.beachInteractionContainer h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgb(0 0 0 / 80%);
}

/* Beach needs panel — character + bars */
.beachNeedsPanel {
    background-color: rgb(0 0 0 / 70%);
    padding: 1.5rem;
    border-radius: 8px;
    width: 100%;
    max-width: 700px;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.beachNeedsChar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.beachNeedsCharImg {
    width: 120px;
    height: 150px;
    object-fit: contain;
    border-radius: 8px;
    background: rgb(255 255 255 / 5%);
}

.beachNeedsCharInfo {
    text-align: center;
}

.beachNeedsCharName {
    font-size: 1rem;
    font-weight: bold;
    color: var(--text-color);
}

.beachNeedsCharLevel {
    font-size: 0.8rem;
    color: #aaa;
}

.beachNeedsCharMood {
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.beachNeedsBars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}

.beachNeedBarRow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.5rem;
    background: rgb(255 255 255 / 4%);
    border-radius: 4px;
}

.beachNeedBarIcon {
    font-size: 0.9rem;
    width: 1.4rem;
    text-align: center;
    flex-shrink: 0;
}

.beachNeedBarLabel {
    font-size: 0.75rem;
    color: #ccc;
    min-width: 3.2rem;
    flex-shrink: 0;
    font-weight: bold;
}

.beachNeedBarTrack {
    flex: 1;
    height: 6px;
    background-color: rgb(255 255 255 / 10%);
    border-radius: 3px;
    overflow: hidden;
    min-width: 0;
}

.beachNeedBar {
    height: 100%;
    border-radius: 3px;
    transition: width 0.4s ease;
}

.beachNeedBarHunger {
    background: linear-gradient(90deg, #e67e22, #f39c12);
}

.beachNeedBarFun {
    background: linear-gradient(90deg, #9b59b6, #8e44ad);
}

.beachNeedBarSocial {
    background: linear-gradient(90deg, #3498db, #2980b9);
}

.beachNeedBarHygiene {
    background: linear-gradient(90deg, #1abc9c, #16a085);
}

.beachNeedBarEnergy {
    background: linear-gradient(90deg, #f1c40f, #f39c12);
}

.beachNeedBar.low {
    box-shadow: 0 0 6px rgb(255 0 0 / 50%);
}

.beachNeedBarValue {
    font-size: 0.75rem;
    color: #aaa;
    min-width: 2rem;
    text-align: right;
    font-weight: bold;
    flex-shrink: 0;
}

/* Beach activities grid */
.beachActivitiesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.8rem;
    width: 100%;
    max-width: 800px;
    max-height: 40vh;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.beachActivityCard {
    background-color: rgb(255 255 255 / 10%);
    padding: 0.8rem;
    border-radius: 8px;
    border: 2px solid rgb(255 255 255 / 15%);
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.beachActivityCard:hover {
    background-color: rgb(255 255 255 / 18%);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.beachActivityCard.used {
    background-color: rgb(81 207 102 / 10%);
    border-color: var(--success-color);
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}

.beachActivityEmoji {
    font-size: 1.8rem;
    line-height: 1;
}

.beachActivityName {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--text-color);
}

.beachActivityDesc {
    font-size: 0.7rem;
    color: #aaa;
}

.beachActivityUsed {
    display: none;
    font-size: 0.7rem;
    color: var(--success-color);
    font-weight: bold;
}

.beachActivityCard.used .beachActivityUsed {
    display: block;
}

.beachActivityCard.used .beachActivityDesc {
    display: none;
}

/* Beach bottom bar */
.beachActivitiesBottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.25rem;
    gap: 1rem;
    width: 100%;
    max-width: 800px;
}

.beachActivitiesBottom .moneyDisplay {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--success-color);
    text-shadow: 0 0 8px rgb(81 207 102 / 25%);
}

.beachLeaveBtn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    background: linear-gradient(135deg, var(--primary-color), #e05555);
    color: white;
    font-weight: bold;
    box-shadow: 0 2px 8px rgb(0 0 0 / 30%);
}

.beachLeaveBtn:hover {
    background: linear-gradient(135deg, var(--secondary-color), #3dbdb5);
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════
   DATE ENDING OVERLAY
   ═══════════════════════════════════════════════════════════ */

.dateEndingOverlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgb(0 0 0 / 85%);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.dateEndingOverlay.active {
    opacity: 1;
    pointer-events: auto;
}

.dateEndingContainer {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgb(30 10 40 / 95%), rgb(10 10 30 / 95%));
    border-radius: 20px;
    border: 2px solid rgb(255 107 107 / 30%);
    box-shadow:
        0 0 60px rgb(255 107 107 / 15%),
        0 8px 32px rgb(0 0 0 / 60%);
    max-width: 420px;
    width: 90%;
    animation: dateEndingEntrance 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes dateEndingEntrance {
    0% {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.dateEndingImg {
    width: 160px;
    height: 200px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    background: rgb(255 255 255 / 5%);
    box-shadow: 0 4px 20px rgb(255 107 107 / 20%);
}

.dateEndingHeading {
    font-size: 1.6rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgb(255 107 107 / 40%);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.dateEndingSubtitle {
    font-size: 1rem;
    color: rgb(255 255 255 / 55%);
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.dateEndingButtons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.dateEndingBtn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgb(0 0 0 / 40%);
}

.dateEndingBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgb(0 0 0 / 50%);
}

.dateEndingBtn:active {
    transform: translateY(1px) scale(0.96);
    transition: all 0.05s ease;
}

.kissBtn {
    background: linear-gradient(135deg, #ff6b9d, #e91e63);
    color: #fff;
}

.kissBtn:hover {
    background: linear-gradient(135deg, #ff85b3, #f06292);
}

.sexBtn {
    background: linear-gradient(135deg, #ff4081, #d50000);
    color: #fff;
}

.sexBtn:hover {
    background: linear-gradient(135deg, #ff6e9e, #ff1744);
}

/* ═══════════════════════════════════════════════════════════
   GENERIC DATE ACTIVITY SCREEN
   ═══════════════════════════════════════════════════════════ */

.genericDateContainer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.genericDateContainer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgb(0 0 0 / 80%) 0%,
        rgb(0 0 0 / 40%) 40%,
        rgb(0 0 0 / 20%) 70%,
        rgb(0 0 0 / 40%) 100%
    );
}

.genericDateContent {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 550px;
    animation: genericDateEntrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes genericDateEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.genericDateEmoji {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    filter: drop-shadow(2px 4px 8px rgb(0 0 0 / 50%));
    animation: genericDateEmojiFloat 3s ease-in-out infinite;
}

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

.genericDateText {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.7;
    text-shadow: 1px 2px 8px rgb(0 0 0 / 80%);
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.genericDateName {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-shadow: 0 0 16px rgb(255 107 107 / 40%);
    font-weight: bold;
    letter-spacing: 1px;
}
