/* Base */
.sterm-body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #828385;
    color: #fff;
    overflow-x: hidden;
}

/* Container */
.term-container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

/* Title */
.term-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.term-owner {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Sections */
.term-section {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
}

.term-section h2 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.term-section ul {
    padding-left: 20px;
}

.term-section li {
    margin-bottom: 5px;
}

/* Footer */


/* Background Animation */
.term-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* Circles */
.term-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: term-move 10s infinite alternate;
}

.term-circle2 {
    width: 200px;
    height: 200px;
    left: 70%;
    top: 50%;
    animation-duration: 15s;
}

/* Cubes */
.term-cube {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(0,0,0,0.2);
    transform: rotate(45deg);
    top: 20%;
    left: 30%;
    animation: term-rotate 8s linear infinite;
}

.term-cube2 {
    top: 70%;
    left: 60%;
    animation-duration: 12s;
}

/* Animations */
@keyframes term-move {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-50px);
    }
}

@keyframes term-rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .term-title {
        font-size: 1.8rem;
    }

    .term-section h2 {
        font-size: 1.2rem;
    }
}
.term-list {
    list-style: decimal;
    padding-left: 20px;
}

.term-list li {
    margin-bottom: 10px;
    line-height: 1.5;
}