body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    min-height: 100vh;
    color: #fff;
}

.gradient-text {
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-text-blue {
    background: linear-gradient(to right, #4776E6, #8E54E9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.input-custom::placeholder {
    color: rgb(255 255 255 / 75%) !important;
    opacity: 1;
}
.card-custom {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

.input-custom {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    color: white;
}

.input-custom:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 99, 71, 0.3);
    outline: none;
    color: white;
}

.btn-primary-custom {
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4);
    border: none;
    color: white;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 65, 108, 0.6);
}

.btn-secondary-custom {
    background: linear-gradient(to right, #4776E6, #8E54E9);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(71, 118, 230, 0.4);
    border: none;
    color: white;
}

.btn-secondary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(71, 118, 230, 0.6);
}

.btn-download-custom {
    background: linear-gradient(to right, #4776E6, #8E54E9);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(71, 118, 230, 0.4);
    border: none;
}

.btn-download-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(71, 118, 230, 0.6);
}

.thumbnail-option {
    transition: all 0.3s ease;
    cursor: pointer;
}

.thumbnail-option:hover {
    transform: translateY(-5px);
}

.thumbnail-option.selected {
    border: 2px solid #ff416c;
    transform: scale(1.03);
}

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ff416c;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.thumbnail-container {
    perspective: 1000px;
}

.thumbnail-card {
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.thumbnail-card:hover {
    transform: rotateY(5deg) scale(1.02);
}

.header-custom {
    background: rgba(15, 12, 41, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-custom {
    background: rgba(15, 12, 41, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    border-radius: 15px;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    border-radius: 50%;
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4);
    width: 60px;
    height: 60px;
}

.stats-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    border-radius: 15px;
}

.nav-link-custom {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    transition: width 0.3s ease;
}

.nav-link-custom:hover::after {
    width: 100%;
}
.ws-icon {
    font-size: 2rem;
}
.nav-link-custom.active::after {
    width: 100%;
}
.work-step {
    width: 50px;
    height: 50px; 
    background: rgb(255 255 255 / 0.05);
}
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
}
.heading-muted {
    font-size: 20px !important;
    color: white;
}
.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 65, 108, 0.6);
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    border-radius: 3px;
}
.text-muted {
    --bs-text-opacity: 1;
    color: rgb(255 255 255 / 75%) !important;
}