/* ===================================
   GLOBAL STYLES & NETFLIX THEME
   =================================== */

:root {
    --primary-red: #e50914;
    --dark-bg: #141414;
    --dark-card: #1f1f1f;
    --dark-hover: #2f2f2f;
    --text-primary: #ffffff;
    --text-secondary: #999999;
    --gradient-red: linear-gradient(135deg, #e50914 0%, #ff6b6b 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    background-attachment: fixed;
    color: var(--text-primary);
    min-height: 100vh;
}

/* ===================================
   NAVIGATION
   =================================== */

.bg-dark-custom {
    background-color: var(--dark-bg) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red) !important;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

/* ===================================
   GRADIENT TEXT
   =================================== */

.gradient-text {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   SURVEY FORM STYLES (STEP-BY-STEP)
   =================================== */

.survey-form {
    background: rgba(31, 31, 31, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    min-height: 600px;
    position: relative;
}

/* Progress Indicator */
.step-progress {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(229, 9, 20, 0.3);
}

.step-progress h4 {
    font-size: 1.2rem;
    color: var(--primary-red);
    margin: 0;
    font-weight: 600;
}

.step-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.step-progress-fill {
    height: 100%;
    background: var(--gradient-red);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
}

/* Survey Steps */
.survey-step {
    display: none;
    animation: fadeInStep 0.5s ease forwards;
}

.survey-step.active {
    display: block;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.survey-step.prev-animation {
    animation: fadeInStepReverse 0.5s ease forwards;
}

@keyframes fadeInStepReverse {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Step Content */
.step-content-wrapper {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-question-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-question-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Step Navigation */
.step-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.step-navigation .btn {
    flex: 1;
    max-width: 200px;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.step-navigation .btn-prev {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
}

.step-navigation .btn-prev:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(-5px);
}

.step-navigation .btn-prev:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.step-navigation .btn-next,
.step-navigation .btn-submit {
    background: var(--gradient-red);
    border: none;
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.4);
}

.step-navigation .btn-next:hover,
.step-navigation .btn-submit:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.6);
}

.step-navigation .btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.question-card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
}

.question-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    display: none; /* Hide for step-by-step */
}

/* ===================================
   GENRE CARDS - CLICKABLE
   =================================== */

.genre-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    min-height: 120px;
    position: relative;
    overflow: hidden;
}

.genre-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-red);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.genre-card i {
    font-size: 2.5rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.genre-card span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    z-index: 1;
    position: relative;
}

.genre-card:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 9, 20, 0.5);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.2);
}

.genre-card:hover::before {
    opacity: 0.1;
}

.genre-card.selected {
    background: var(--gradient-red);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.4);
    transform: scale(1.05);
}

.genre-card.selected::before {
    opacity: 1;
}

.genre-card.selected i,
.genre-card.selected span {
    color: #fff;
}

/* ===================================
   OPTION CARDS - CLICKABLE (Radio Buttons)
   =================================== */

.option-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    min-height: 120px;
    position: relative;
    overflow: hidden;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-red);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.option-card i {
    font-size: 2.5rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.option-card span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    z-index: 1;
    position: relative;
}

.option-card:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 9, 20, 0.5);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.2);
}

.option-card:hover::before {
    opacity: 0.1;
}

.option-card.selected {
    background: var(--gradient-red);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.4);
    transform: scale(1.05);
}

.option-card.selected::before {
    opacity: 1;
}

.option-card.selected i,
.option-card.selected span {
    color: #fff;
}

/* ===================================
   BUTTONS
   =================================== */

.btn-danger {
    background: var(--gradient-red);
    border: none;
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.4);
}

.btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.6);
    background: linear-gradient(135deg, #ff0a16 0%, #ff7979 100%);
}

.btn-outline-warning {
    border: 2px solid #ffc107;
    color: #ffc107;
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-warning:hover {
    background: #ffc107;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.btn-outline-danger {
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.btn-outline-danger:hover {
    background: var(--primary-red);
    color: white;
    transform: scale(1.05);
}

/* ===================================
   MOVIE CARDS
   =================================== */

.movie-card {
    background: var(--dark-card);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.movie-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(229, 9, 20, 0.5);
    border-color: var(--primary-red);
}

/* Poster Wrapper for Loading State */
.poster-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.movie-poster {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s ease;
    position: relative;
    z-index: 2;
}

/* Loading Placeholder */
.poster-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(40, 40, 40, 0.95) 100%);
    color: rgba(255, 255, 255, 0.4);
    z-index: 1;
    animation: pulse 1.5s ease-in-out infinite;
}

.poster-loading i {
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.poster-loading p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Hide loading when image loads */
.movie-poster[src]:not([src=""]) ~ .poster-loading {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Error state for broken images */
.movie-poster.poster-error {
    background: rgba(229, 9, 20, 0.1);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.movie-card:hover .movie-poster {
    transform: scale(1.1);
}

.movie-info {
    padding: 1.5rem;
}

.movie-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.movie-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.movie-year,
.movie-genre,
.movie-rating {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.movie-rating {
    color: #ffc107;
    font-weight: 600;
}

.movie-plot {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.match-score {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gradient-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.match-score.ai-score {
    background: linear-gradient(135deg, #0dcaf0, #0d6efd);
    animation: aiPulse 2s infinite;
}

@keyframes aiPulse {
    0%, 100% {
        box-shadow: 0 3px 10px rgba(13, 202, 240, 0.5);
    }
    50% {
        box-shadow: 0 5px 20px rgba(13, 202, 240, 0.8);
    }
}

.match-score.ai-score i {
    animation: brainRotate 3s infinite;
}

@keyframes brainRotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

/* ===================================
   MOVIE ACTIONS
   =================================== */

.movie-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.movie-actions .btn,
.movie-actions a.btn {
    flex: 1;
    min-width: 120px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

/* Gledaj button - Zelena */
.movie-actions .btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.movie-actions .btn-success:hover {
    background: linear-gradient(135deg, #218838, #1aa179);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

/* Trailer button - Žuta/Narandžasta */
.movie-actions .btn-warning {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #000;
}

.movie-actions .btn-warning:hover {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

/* Detalji button - Crvena (outline style pretvoren u solid) */
.movie-actions .btn-outline-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: none;
}

.movie-actions .btn-outline-danger:hover {
    background: linear-gradient(135deg, #c82333, #bd2130);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

/* YouTube button - Tamno Crvena */
.movie-actions .btn-danger {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
}

.movie-actions .btn-danger:hover {
    background: linear-gradient(135deg, #cc0000, #990000);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

/* Trailer Button */
.btn-warning {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    border: none;
    color: #000;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* ===================================
   MODAL STYLES
   =================================== */

.modal-content.bg-dark-custom {
    background: var(--dark-card);
    border: 2px solid var(--primary-red);
}

.modal-header {
    border-bottom: 1px solid rgba(229, 9, 20, 0.3);
}

.modal-body {
    padding: 2rem;
}

.modal-movie-poster {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-label {
    font-weight: 600;
    color: var(--primary-red);
}

.detail-value {
    color: var(--text-secondary);
}

/* Trailer Modal */
.trailer-container {
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.trailer-container iframe {
    border: none;
    display: block;
}

#trailerModal .modal-xl {
    max-width: 90%;
}

#trailerModal .modal-body {
    padding: 0;
}

#trailerModal .modal-header {
    background: rgba(255, 193, 7, 0.1);
    border-bottom: 2px solid #ffc107;
}

#trailerModal .modal-footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 193, 7, 0.3);
}

/* ===================================
   LOADING SPINNER
   =================================== */

.spinner-border {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===================================
   FAVORITES SECTION
   =================================== */

#favoritesContainer .movie-card {
    position: relative;
}

.remove-favorite {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-favorite:hover {
    background: var(--primary-red);
    color: white;
    transform: scale(1.1);
}

/* ===================================
   EMPTY STATE
   =================================== */

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--dark-card);
    border-radius: 15px;
    border: 2px dashed rgba(229, 9, 20, 0.3);
}

.empty-state i {
    font-size: 4rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.empty-state h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--text-secondary);
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

@media (max-width: 768px) {
    .survey-form {
        padding: 1.5rem;
        min-height: 500px;
    }
    
    .step-question-title {
        font-size: 1.5rem;
    }
    
    .step-question-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .genre-card,
    .option-card {
        padding: 1.5rem 0.8rem;
        min-height: 100px;
    }
    
    .genre-card i,
    .option-card i {
        font-size: 2rem;
    }
    
    .genre-card span,
    .option-card span {
        font-size: 1rem;
    }
    
    .step-navigation {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .step-navigation .btn {
        max-width: 100%;
        width: 100%;
    }
    
    .poster-wrapper,
    .movie-poster {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.4rem;
    }
    
    .step-question-title {
        font-size: 1.3rem;
    }
    
    .step-progress h4 {
        font-size: 1rem;
    }
    
    .genre-card,
    .option-card {
        padding: 1.2rem 0.6rem;
        min-height: 90px;
    }
    
    .genre-card i,
    .option-card i {
        font-size: 1.8rem;
    }
    
    .genre-card span,
    .option-card span {
        font-size: 0.95rem;
    }
    
    .poster-wrapper,
    .movie-poster {
        height: 300px;
    }
    
    .movie-actions {
        flex-direction: column;
    }
    
    .movie-actions .btn,
    .movie-actions a.btn {
        width: 100%;
        min-width: auto;
    }
    
    #trailerModal .modal-xl {
        max-width: 95%;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.d-none {
    display: none !important;
}

.text-muted {
    color: var(--text-secondary) !important;
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.movie-card {
    animation: fadeIn 0.5s ease forwards;
}

.movie-card:nth-child(1) { animation-delay: 0.1s; }
.movie-card:nth-child(2) { animation-delay: 0.2s; }
.movie-card:nth-child(3) { animation-delay: 0.3s; }
.movie-card:nth-child(4) { animation-delay: 0.4s; }
.movie-card:nth-child(5) { animation-delay: 0.5s; }
.movie-card:nth-child(6) { animation-delay: 0.6s; }

/* Hide original action buttons (replaced by step navigation) */
.survey-form > .text-center {
    display: none !important;
}

/* ===================================
   SCROLLBAR STYLING
   =================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff0a16;
}

/* ===================================
   STREAMING OPTIONS
   =================================== */

.streaming-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.streaming-card {
    background: var(--dark-hover);
    padding: 1.2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-red);
    margin-bottom: 1rem;
}

.streaming-card:hover {
    background: var(--dark-card);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(229, 9, 20, 0.3);
}

.streaming-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.streaming-info {
    flex: 1;
}

.streaming-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}

.streaming-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0.2rem 0 0 0;
}

.streaming-arrow {
    font-size: 1.2rem;
    color: var(--primary-red);
    transition: transform 0.3s ease;
}

.streaming-card:hover .streaming-arrow {
    transform: translateX(5px);
}

/* Streaming Modal */
#streamingModal .modal-body {
    padding: 2rem;
}

#streamingModal .alert {
    border-radius: 10px;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

/* Responsive Streaming Cards */
@media (max-width: 768px) {
    .streaming-card {
        padding: 1rem;
    }
    
    .streaming-icon {
        font-size: 2rem;
    }
    
    .streaming-name {
        font-size: 1rem;
    }
}

/* ===================================
   SHARE OPTIONS
   =================================== */

.share-option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 120px;
    position: relative;
    overflow: hidden;
}

.share-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.share-option-card:hover::before {
    opacity: 1;
}

.share-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.share-option-card i {
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.share-option-card:hover i {
    transform: scale(1.1);
}

.share-option-card span {
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}

/* Share Modal */
#shareModal .modal-body {
    padding: 2rem;
}

#shareModal .alert {
    border-radius: 10px;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

/* Responsive Share Cards */
@media (max-width: 768px) {
    .share-option-card {
        padding: 1.2rem 0.8rem;
        min-height: 100px;
    }
    
    .share-option-card i {
        font-size: 2rem;
    }
    
    .share-option-card span {
        font-size: 0.85rem;
    }
}

/* ===================================
   LAZY LOADING
   =================================== */

.lazy-load-sentinel {
    width: 100%;
    height: 1px;
    visibility: hidden;
}

