.scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(-45deg);
}

.scroll-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #000;
    letter-spacing: 0.5px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.hero {
    position: relative;
}

@media (max-width: 768px) {
    section[style*="grid-template-columns: 1fr 1fr"] > div {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

/* Notification Popup Styles */
.notification-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 10000;
    max-width: 320px;
    opacity: 0;
    transform: translateX(120%) scale(0.9);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-family: 'DM Sans', sans-serif;
}

.notification-popup.show {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.notification-popup.hide {
    opacity: 0;
    transform: translateX(120%) scale(0.9);
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.notification-title {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #6e6e73;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    line-height: 1;
}

.notification-close:hover {
    color: #000;
}

.notification-message {
    color: #6e6e73;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.notification-buttons {
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.notification-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #5865F2;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    flex: 1;
}

.notification-btn:hover {
    background: #4752C4;
    transform: translateY(-1px);
}

.notification-btn.youtube {
    background: #ff0931;
}

.notification-btn.youtube:hover {
    background: #bb0725;
}

.notification-btn i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .notification-popup {
        top: 10px;
        left: 50%;
        right: auto;
        transform: translateX(-50%) translateY(-120%) scale(0.9);
        max-width: calc(100% - 20px);
    }

    .notification-popup.show {
        transform: translateX(-50%) translateY(0) scale(1);
    }

    .notification-popup.hide {
        transform: translateX(-50%) translateY(-120%) scale(0.9);
    }
}