@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-main: #090d16;
    --bg-card: rgba(17, 24, 39, 0.7);
    --bg-card-hover: rgba(26, 36, 57, 0.85);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --accent-gradient: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
    --accent-color: #7c3aed;
    --accent-hover: #6d28d9;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-glow: 0 0 20px rgba(124, 58, 237, 0.15);
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: radial-gradient(circle at center, #0e1320 0%, #070a12 100%) no-repeat fixed;
    color: var(--text-primary);
    font-family: var(--font-sans);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Background grid effect disabled */
body::before {
    display: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Shared Utilities */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* LOGIN LAYOUT */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 20px;
}

.login-card {
    width: 100%;
    max-width: 440px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), var(--shadow-glow);
}

.logo-wrapper {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image {
    max-height: 80px;
    max-width: 220px;
    object-fit: contain;
}

.logo-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}

.logo-placeholder svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

.login-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.login-card p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 32px;
}

/* FORMS */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.input-control {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 15px;
    transition: all 0.3s ease;
}

select option {
    background-color: #0b0f19 !important;
    color: #ffffff !important;
}

.input-control:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.1);
}

.input-control::placeholder {
    color: var(--text-muted);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-danger {
    background: var(--danger-color);
    color: #fff;
}

.btn-danger:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-sm {
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 6px;
}

.btn-block {
    width: 100%;
}

.alert {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #a7f3d0;
}

/* DASHBOARD LAYOUT */
.dashboard-header {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo {
    max-height: 50px;
    max-width: 150px;
    object-fit: contain;
}

.header-brand h1 {
    font-size: 22px;
    font-weight: 700;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-name {
    color: var(--text-secondary);
    font-size: 14px;
}

.dashboard-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 32px;
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.dashboard-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.card-title svg {
    color: var(--accent-color);
    width: 20px;
    height: 20px;
}

.panel {
    padding: 24px;
}

/* FILE UPLOAD DROPZONE */
.dropzone-container {
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 32px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.01);
    position: relative;
}

.dropzone-container:hover, .dropzone-container.dragover {
    border-color: var(--accent-color);
    background: rgba(124, 58, 237, 0.03);
}

.dropzone-container input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px auto;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.dropzone-container:hover .upload-icon {
    color: var(--accent-color);
    background: rgba(124, 58, 237, 0.1);
    transform: translateY(-2px);
}

.dropzone-text h4 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
}

.dropzone-text p {
    font-size: 12px;
    color: var(--text-muted);
}

#file-preview {
    margin-top: 16px;
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    font-size: 13px;
}

#file-preview span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

#file-preview button {
    background: none;
    border: none;
    color: var(--danger-color);
    cursor: pointer;
}

/* SETTINGS CARD UI */
.settings-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.setting-row:last-child {
    border-bottom: none;
}

.setting-info h5 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
}

.setting-info p {
    font-size: 12px;
    color: var(--text-muted);
}

/* CUSTOM TOGGLE SWITCH */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .3s;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

input:checked + .slider {
    background: var(--accent-gradient);
    border-color: transparent;
}

input:checked + .slider:before {
    transform: translateX(20px);
}

/* POSTERS LIST/GRID */
.posters-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.poster-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.poster-item:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.15);
}

.poster-thumb {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: #000;
}

.poster-details {
    flex: 1;
    min-width: 0;
}

.poster-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.poster-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--text-muted);
}

.poster-msg-preview {
    font-style: italic;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 250px;
}

.poster-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.action-btn.delete:hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
    border-color: rgba(239, 68, 68, 0.2);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.empty-state svg {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* TOAST MESSAGE */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #111827;
    color: #fff;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 10px rgba(16, 185, 129, 0.2);
    border-left: 4px solid var(--success-color);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* SUCCESS MODAL CARD */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
    overflow-y: auto !important;
}

.modal-card {
    width: 100%;
    max-width: 500px;
    padding: 32px;
    text-align: center;
    margin: auto;
    animation: scaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

@keyframes scaleIn {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.modal-success-icon {
    width: 56px;
    height: 56px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}

.modal-success-icon svg {
    width: 32px;
    height: 32px;
}

.qr-box {
    margin: 24px auto;
    padding: 16px;
    background: white;
    border-radius: var(--radius-md);
    display: inline-block;
}

.qr-box canvas, .qr-box img {
    display: block;
    max-width: 180px;
    max-height: 180px;
}

.share-link-input-group {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.share-actions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

/* PUBLIC VIEW PAGE (`view.php`) */
.public-view-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 16px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.poster-display-container {
    display: inline-flex;
    flex-direction: column;
    max-width: 100%;
    width: auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.responsive-poster {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 90vh; /* Scaled to look nice on desktop without overflow */
    object-fit: contain;
    border-radius: var(--radius-md);
}

.responsive-poster.has-caption {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.poster-caption-box {
    padding: 24px;
    background: rgba(17, 24, 39, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.poster-caption-box h3 {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.poster-caption-box p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    white-space: pre-wrap;
}

.public-footer {
    margin-top: 24px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* Custom DP logo style option */
.logo-image.style-round, .header-logo.style-round {
    border-radius: 50% !important;
    aspect-ratio: 1/1 !important;
    width: 60px !important;
    height: 60px !important;
    max-width: 60px !important;
    max-height: 60px !important;
    object-fit: cover !important;
    border: 2px solid var(--accent-color) !important;
    box-shadow: var(--shadow-glow) !important;
}

/* Custom CTA Button styling */
.cta-button-container {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    width: 100%;
}
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: #fff;
    cursor: pointer;
    border: none;
}
.cta-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* User Management Table Styles */
.user-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
}
.user-table th, .user-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}
.user-table th {
    font-weight: 600;
    color: var(--text-secondary);
}
.permission-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-right: 4px;
    background: rgba(124, 58, 237, 0.15);
    color: #a78bfa;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

/* Edit Modal Layout */
.edit-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    text-align: left;
}

/* Dynamic custom heading typography in view.php */
.custom-poster-heading {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 800;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.5px;
    width: 100%;
    word-break: break-word;
    white-space: pre-wrap;
}

/* RESPONSIVE RESPONSIVENESS */
@media (max-width: 1024px) {
    .dashboard-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .dashboard-header {
        padding: 20px;
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .dashboard-container {
        padding: 0 16px 40px 16px;
    }
    
    .poster-item {
        flex-direction: column;
        align-items: stretch;
    }
    
    .poster-thumb {
        width: 100%;
        height: 160px;
    }
    
    .poster-msg-preview {
        max-width: 100%;
    }
    
    .share-actions-row {
        grid-template-columns: 1fr;
    }
    .edit-form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Custom DP image layout */
.custom-public-dp {
    width: 80px;
    height: 80px;
    border-radius: 50% !important;
    object-fit: cover;
    margin: 0 auto 16px auto;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

/* Dynamic button rows builder in dashboard */
.button-edit-row {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    position: relative;
}
.button-edit-row .remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    color: var(--danger-color);
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}
.button-edit-row .remove-btn:hover {
    filter: brightness(1.2);
}

/* Analytics summaries and stats cards */
.analytics-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.analytics-stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: var(--radius-sm);
    text-align: center;
}
.analytics-stat-card h4 {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 600;
}
.analytics-stat-card p {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-color);
    margin: 0;
}
.logs-table-wrapper {
    max-height: 180px;
    overflow-y: auto;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-top: 8px;
    background: rgba(0, 0, 0, 0.2);
}
.logs-table {
    width: 100%;
    border-collapse: collapse;
}
.logs-table th, .logs-table td {
    padding: 8px 12px;
    font-size: 12px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}
.logs-table th {
    background: rgba(17, 24, 39, 0.8);
    position: sticky;
    top: 0;
    z-index: 1;
    color: var(--text-secondary);
    font-weight: 600;
}
.logs-table tr:last-child td {
    border-bottom: none;
}

/* Social Media Icon Bar */
.socials-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}
.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.social-icon-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
.social-icon-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}
/* Brand colors on hover */
.social-icon-link.facebook:hover { background-color: #1877f2; }
.social-icon-link.instagram:hover { background-color: #e1306c; }
.social-icon-link.youtube:hover { background-color: #ff0000; }
.social-icon-link.twitter:hover { background-color: #1da1f2; }
.social-icon-link.telegram:hover { background-color: #0088cc; }
.social-icon-link.whatsapp:hover { background-color: #25d366; }
.social-icon-link.linkedin:hover { background-color: #0a66c2; }

/* Video Pulse Play Overlay Styles */
.video-container-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
    overflow: hidden;
}
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.video-play-btn {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.6);
    animation: playPulse 2s infinite;
    border: none;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.video-play-btn svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
    margin-left: 6px;
}
.video-play-btn:hover {
    transform: scale(1.15);
}
@keyframes playPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.75);
    }
    70% {
        box-shadow: 0 0 0 22px rgba(124, 58, 237, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
    }
}
