.page-creation .three-column .col .img-creation {
    cursor: none;
}

.page-creation .three-column .col .img-creation .creation-in {
    left: 42% !important;
}

body.debug .follower {
    opacity: 1 !important;
    width: 280px !important;
    height: 280px !important;
}

.youtube-container {
    overflow: hidden;
    width: 100%;
    /* Keep it the right aspect-ratio */
    aspect-ratio: 16/9;
    /* No clicking/hover effects */
    pointer-events: none;
}

.youtube-container>iframe {
    /* Extend it beyond the viewport... */
    width: 300%;
    height: 100%;
    /* ...and bring it back again */
    margin-left: -100%;
}

ul.card-text {
    list-style: square outside;
}

.cookie-consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(33, 37, 41, 0.95);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    border-top: 1px solid #515151;
}

.cookie-consent-bar.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-consent-text strong {
    font-weight: 400;
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.cookie-policy-link {
    color: #17f9e6;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-policy-link:hover {
    color: #17f9e6;
    text-decoration: none;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-consent-actions button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.btn-accept {
    background: #1fc08a;
    color: black;
    /* white;*/
}

.btn-accept:hover {
    background: #17f9e6;
    transform: translateY(-1px);
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #6c757d;
}

.btn-reject:hover {
    background: #6c757d;
    color: #ffffff;
    transform: translateY(-1px);
}


/* Mobile Responsive */

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .cookie-consent-text p {
        font-size: 13px;
    }
    .cookie-consent-text strong {
        font-size: 15px;
    }
    .cookie-consent-actions {
        width: 100%;
        justify-content: center;
    }
    .cookie-consent-actions button {
        flex: 1;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .cookie-consent-bar {
        padding: 15px;
    }
    .cookie-consent-actions {
        flex-direction: column;
        gap: 8px;
    }
    .cookie-consent-actions button {
        max-width: none;
    }
}


/* Custom cursor for project hover */

.project-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(33, 37, 41, 0.85);
    /* border: 2px solid #fff; */
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s, opacity 0.2s;
    opacity: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    will-change: opacity, transform;
}

.project-cursor.show {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.2s, transform 0.15s;
}

.project-cursor.fade-out {
    opacity: 0;
    transition: opacity 1.5s;
}

.project-cursor .pause-icon {
    width: 28px;
    height: 28px;
    display: block;
}

.project-cursor .pause-icon svg {
    width: 100%;
    height: 100%;
    fill: #fff;
}
