body {
    background: #f8f9fa;
    color: #212529;
}

.hero {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: white;
    padding: 90px 0;
}

.hero h1 {
    font-weight: 700;
}

.api-url {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 14px 18px;
    font-family: monospace;
    word-break: break-all;
}

.section-title {
    font-weight: 700;
    margin-bottom: 12px;
}

.endpoint-card {
    border: 0;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    transition: 0.2s ease;
    height: 100%;
}

.endpoint-card:hover {
    transform: translateY(-3px);
}

.method {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 6px;
    background: #198754;
    color: white;
    font-size: 12px;
    font-weight: 700;
}

pre {
    background: #212529;
    color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    overflow-x: auto;
    font-size: 14px;
}

code {
    color: #e83e8c;
}

.code-wrapper {
    position: relative;
}

.copy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
}

.feature-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9f2ff;
    color: #0d6efd;
    border-radius: 12px;
    font-size: 24px;
}

footer {
    background: #212529;
    color: #adb5bd;
}

footer strong {
    color: white;
}

/* modal css */
.copy-success-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #e8f7ef;
    color: #198754;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    animation: successPop 0.35s ease;
}

.copy-success-icon span {
    line-height: 1;
}

@keyframes successPop {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}