body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7f7f7;
}

.wrapper {
    text-align: center;
    margin-top: 180px;
}

h1 {
    color: #ff6b6b;
    font-weight: 500;
}

p {
    color: #888;
}

.link {
    text-decoration: none;
    color: black;
    font-weight: bold;
    border-bottom: 1px solid black;
}

/* Gear */
.gear-box {
    margin-bottom: 20px;
}

.gear {
    width: 50px;
    height: 50px;
    fill: none;
    stroke: #ff6b6b;
    stroke-width: 2;
    animation: spin 4s linear infinite;
}

.gear.small {
    width: 30px;
    height: 30px;
    animation-direction: reverse;
}

/* Animasi */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}