﻿/* ==========================================
   BLAZOR DEFAULT STYLES
   ========================================== */

h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC4yNTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1町の９２．１３１４ ２５９．４７３ ５３．６２OTQyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1TAINYnJlbnRfcGF0aD0iL2dldF9zdG9yYWdlX3BhdGgiPjxyZWN0IHg9IjI1OS43ODYiIHk9Ijg3LjMwMDUiIHdpZHRoPSI3LjYwMSIgaGVpZ2h0PSI2LjIyMjQiLz48L2c+PC9zdmc+) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

/* ==========================================
   ANIMATED BACKGROUND
   ========================================== */

body {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    font-family: 'Arial', sans-serif;
    color: #1a2a3a;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ==========================================
   CARD NAVIGATION (Home Page)
   ========================================== */

.card-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
    gap: 2rem;
    padding: 1rem;
    box-sizing: border-box;
}

    .card-nav .card {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 2rem;
        text-align: center;
        width: 200px;
        height: 150px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        color: white;
        font-size: 1.5rem;
        font-weight: bold;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: transform 0.3s ease, background 0.3s ease;
    }

        .card-nav .card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.2);
        }

/* ==========================================
   CARD EDITOR (Create/Edit)
   ========================================== */

.editor-container {
    max-width: 1140px;
    margin: 2rem auto;
    padding: 2.5rem;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

    .editor-container h1 {
        font-weight: bold;
        margin-bottom: 0.5rem;
    }

    .editor-container p {
        margin-bottom: 2rem;
    }

    .editor-container .card {
        background-color: #ffffff;
    }

    .editor-container .card-header {
        font-size: 1.2rem;
        font-weight: 500;
    }

.social-link-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

    .social-link-row .form-select {
        width: 150px;
    }

    .social-link-row .form-control {
        flex-grow: 1;
    }

/* ==========================================
   PUBLIC PROFILE PAGE
   ========================================== */

.public-profile-body {
    position: relative;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a2a3a;
    min-height: 100vh;
}

.public-profile-container {
    max-width: 600px;
    margin: 0 auto;
    color: #fff;
}

.public-profile-hero {
    position: relative;
    height: 60vh;
    width: 100%;
    overflow: hidden;
    background-color: #111;
    z-index: 1; /* Set hero z-index to 1 */
}

.public-profile-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

    .public-profile-hero-img.loaded {
        transform: scale(1);
    }

.public-profile-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, #1a2a3a 10%, rgba(26, 42, 58, 0.5) 50%, transparent 100%);
}

/*.public-profile-content {
    position: relative;
    z-index: 3;*/ /* Set content z-index to 3 */
    /*margin-top: -120px;
    padding: 0 1.5rem 2rem 1.5rem;
    text-align: center;
}*/

.public-profile-header {
    text-align: center;
    margin-bottom: 2rem;
}

.public-profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.public-profile-title {
    font-size: 1.2rem;
    font-weight: 400;
    color: #c0c8d1;
    margin: 0.25rem 0 1.5rem 0;
}

.public-profile-bio {
    font-size: 1rem;
    color: #c0c8d1;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.public-profile-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.public-profile-add-contact-btn {
    flex-grow: 1;
    max-width: 300px;
    background-color: #fff;
    color: #1a2a3a;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.public-profile-add-contact-btn:hover {
    transform: scale(1.05);
}

.public-profile-icon-btn {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.public-profile-icon-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.public-profile-details {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.public-profile-details li {
    background-color: #2c3e50;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: left;
}

.public-profile-details li a {
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.public-profile-details li a strong {
    color: #a0aebd;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.public-profile-details li a span {
    font-size: 1rem;
    font-weight: 500;
}

.public-profile-social-links {
    text-align: center;
    padding-bottom: 2rem;
}

.public-profile-social-links a {
    color: #fff;
    margin: 0 0.75rem;
    font-size: 1.8rem;
    transition: opacity 0.2s;
}

.public-profile-social-links a:hover {
    opacity: 0.7;
}

/* ==========================================
   STYLE EDITOR - PROFESSIONAL LAYOUT
   ========================================== */

/* This section is scoped to prevent conflicts */
.style-editor-page {
    height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
    background: transparent;
}

.style-editor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

    .style-editor-header h1 {
        margin: 0;
        font-size: 1.75rem;
        color: #1a2a3a;
    }

    .style-editor-header p {
        margin: 0.25rem 0 0;
        color: #6c757d;
    }

.style-editor-actions {
    display: flex;
    gap: 0.75rem;
}

.style-editor-body {
    display: flex;
    flex: 1;
    gap: 1.5rem;
    min-height: 0;
}

/* Controls Panel */
.style-editor-controls-panel {
    flex: 0 0 380px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow-y: auto;
    padding: 1.5rem;
}

.controls-section {
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

    .controls-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .controls-section h5 {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
        font-size: 1rem;
        font-weight: 600;
        color: #1a2a3a;
    }

.icon {
    font-size: 1.2rem;
}

.control-group {
    margin-bottom: 1rem;
}

.control-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #495057;
}

/* Preview Panel */
.style-editor-preview-panel {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    min-height: 0;
}

.preview-frame {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    min-height: 0;
}

.preview-device {
    position: relative;
    width: 375px;
    height: 812px;
    background: #000;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    overflow: hidden;
    flex-shrink: 0;
}

.device-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 30px;
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.preview-device iframe {
    width: 100%;
    height: 100%;
    border: double;
    border-radius: 40px;
    background: #fff;
    scrollbar-width: none;
}

.preview-info {
    margin-top: 1rem;
    text-align: center;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1200px) {
    .style-editor-controls-panel {
        flex: 0 0 320px;
    }
}

@media (max-width: 992px) {
    .style-editor-page,
    .style-editor-wrapper {
        height: auto;
    }

    .style-editor-body {
        flex-direction: column;
    }

    .style-editor-controls-panel {
        flex: 1;
        width: 100%;
        max-height: 50vh;
    }

    .preview-device {
        width: 320px;
        height: 568px;
    }
}

@media (max-width: 768px) {
    .card-nav {
        flex-direction: column;
        gap: 1.5rem;
        height: auto; /* Allow height to fit content */
        padding-top: 2rem; /* Add space below the logo */
        justify-content: flex-start; /* Align items to the top */
    }

        .card-nav .card {
            width: 90%;
            max-width: 400px;
            height: 120px;
            font-size: 1.8rem;
        }

    .editor-container {
        margin: 1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .style-editor-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .style-editor-actions {
        width: 100%;
    }

        .style-editor-actions button {
            flex: 1;
        }
}

/* ==========================================
   THEME EFFECTS
   ========================================== */

.theme-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Crucial: lets clicks pass through to buttons */
    z-index: 2; /* Move this up so it sits on top of the background colors */
    overflow: hidden;
}

/* Fish Theme */
.fish {
    position: absolute;
    animation: swim 12s linear infinite;
    opacity: 0.4;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.3));
}

@keyframes swim {
    0% {
        transform: translateX(-50px) translateY(0);
    }

    25% {
        transform: translateX(25vw) translateY(-10px);
    }

    50% {
        transform: translateX(50vw) translateY(10px);
    }

    75% {
        transform: translateX(75vw) translateY(-5px);
    }

    100% {
        transform: translateX(calc(100vw + 50px)) translateY(0);
    }
}

/* Bubbles Theme */
.bubble {
    position: absolute;
    bottom: -50px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 100%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        bottom: -50px; /* Start below the container */
        transform: translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        bottom: 100%; /* End at the top of the container */
        transform: translateX(20px); /* Keep the sideways drift */
        opacity: 0;
    }
}

/* Stars Theme */
.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Theme-specific body backgrounds */
.theme-stars .public-profile-body {
    background: linear-gradient(to bottom, #0c1445 0%, #1a2a3a 100%);
}

/* Style for the Analytics Reports Globe Container */
#globe-container {
    background-color: #f8f9fa; /* A standard light gray */
    border-radius: 8px; /* Makes the corners look nice */
    padding: 1rem; /* Gives the globe some breathing room */
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1); /* Adds a subtle inner shadow */
}

    /* Ensure the canvas inside scales correctly */
    #globe-container canvas {
        width: fit-content !important;
        height: fit-content !important;
        aspect-ratio: 1 / 1;
    }

/* ==========================================
   INTRO ANIMATION OVERLAY
   ========================================== */

#animation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Ensure this matches the profile background for a seamless look */
    background-color: #1a2a3a;
    z-index: 10000; /* Must be higher than all other profile content */
    opacity: 1;
    transition: opacity 1s ease-in-out; /* Controls the fade-out speed */
    display: flex;
    justify-content: center;
    align-items: center;
}

    /* Class to start the fade-out */
    #animation-overlay:not(.visible) {
        opacity: 0;
    }

    /* Class to remove the overlay from the layout after fading */
    #animation-overlay.hidden {
        display: none;
    }


/* ==========================================
   Call To Action
   ========================================== */

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px; /* Limits width to match standard mobile buttons */
    padding: 10px 20px; /* Reduced from 12px to match standard buttons */
    border-radius: 50px;
    text-decoration: none;
    /* Font Adjustments */
    font-weight: 500; /* Reduced from bold */
    font-size: 0.95rem; /* Reduced from 1.1rem to match Add Connection */
    line-height: 1.4;
    /* Softer Shadow */
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 2;
}

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.25);
        filter: brightness(1.05);
    }

    .cta-button:active {
        transform: translateY(0);
    }

.cta-arrow {
    font-size: 1.1em;
    margin-left: 6px;
    transition: transform 0.2s;
}

.cta-button:hover .cta-arrow {
    transform: translateX(3px);
}

/* Update container to ensure centering matches the buttons below */
.cta-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 1rem; /* Space between CTA and Add Connection */
}

/* ==========================================
   MODERN PROFILE LAYOUT (V2)
   ========================================== */

.public-profile-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
    margin: -100px auto 0 auto;
    position: relative;
    padding-bottom: 3rem;
    z-index: 2;
}

/* 1. BIO & HEADER */
.bio-section {
    text-align: center;
    padding: 0 1rem;
}

.public-profile-bio {
    margin-bottom: 0;
    line-height: 1.6;
    opacity: 0.9;
}

/* 2. BOOKING BUTTON */
.booking-container {
    padding: 0 1rem;
}

.btn-booking {
    background: linear-gradient(135deg, #00b09b, #96c93d);
    border: none;
    padding: 1rem;
    border-radius: 16px;
    color: white !important;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 176, 155, 0.3);
    transition: transform 0.2s;
    width: 100%;
    z-index: 2;
    font-size: 1.1rem;
}

    .btn-booking:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 176, 155, 0.4);
    }

/* 3. CONTACT GLASS CARD */
.contact-glass-card {
    background: rgba(255, 255, 255, 0.1); /* Increased opacity for visibility */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); /* For Safari/iOS */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 1rem; /* Ensure margin on mobile */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

.info-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none !important; /* Force remove underline */
    color: inherit;
    padding: 0.8rem;
    border-radius: 12px;
    transition: background 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

    .info-row:last-child {
        border-bottom: none;
    }

    .info-row:hover, .info-row:active {
        background: rgba(255,255,255,0.1);
    }

.info-icon-box {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0; /* Prevent icon shrinking */
}

.info-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: hidden; /* Prevent text overflow */
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.8;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.info-value {
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Arrow indicator on the right */
.info-arrow {
    opacity: 0.5;
    font-size: 1.2rem;
}

/* Save Contact Button */
.btn-save-contact {
    width: 100%;
    margin-top: 0.5rem;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

    .btn-save-contact:active {
        transform: scale(0.98);
    }

/* Socials */
.card-socials {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

    .card-socials a {
        opacity: 0.9;
        transition: transform 0.2s;
        color: white;
        background: rgba(255,255,255,0.1);
        padding: 8px;
        border-radius: 50%;
        display: flex;
    }

        .card-socials a:active {
            transform: scale(0.9);
        }

/* 4. BOTTOM SECTION */
.bottom-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
}

.btn-cta-banner {
    display: block;
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    color: white !important;
}

.cta-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.cta-sub {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Downloads List */
.resources-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.section-header {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
    margin-left: 0.5rem;
    margin-bottom: 0.25rem;
    color: white;
}

.file-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: 14px;
    text-decoration: none !important;
    color: white !important;
    transition: background 0.2s;
}

.file-icon {
    font-size: 1.4rem;
    margin-right: 1rem;
}

.file-text {
    flex-grow: 1;
    font-weight: 500;
}

/* Play Button Overlay */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Slight dark tint */
    z-index: 20; /* Above video */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    backdrop-filter: blur(2px);
    transition: opacity 0.3s;
}

.play-icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.video-play-overlay:hover .play-icon-circle {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.4);
}