/* ===========================
   ARTICLE STYLING
   =========================== */
article {
    max-width: 1000px;
    margin: 40px auto;
    background: #000;
    border: 1px solid #00ffaa;
    border-radius: 12px;
    padding: 40px 50px;
    box-shadow: 0 0 15px rgba(255,255,255,0.05);
}

article h1, article h2, article h3 {
    color: #00ffaa;
    font-weight: 700;
    line-height: 1.4;
}

article h1 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 10px;
}

article p {
    margin-bottom: 20px;
    color: #fff;
    text-align: justify;
    font-family: 'Lucida Sans', Verdana, sans-serif;
    font-size: 16px;
}

article strong {
    color: #fff;
}

article ul, article ol {
    margin-left: 25px;
    color: #fff;
}

.breadcrumbs {
    margin-top: 30px;
    font-size: 0.9em;
    color: #aaa;
}

.breadcrumbs a {
    color: #00ffaa;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    article { padding: 25px 20px; }
    article h1 { font-size: 1.6em; }
    article h2 { font-size: 1.3em; }
}

/* ===========================
   LOGIN & REGISTER BUTTONS
   =========================== */
.n-columns-2 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    font-weight: 700;
}

.n-columns-2 a {
    text-align: center;
}

.login, .register {
    color: #fff;
    padding: 13px 10px;
    border: 2px solid #000;
}

.login, .login-button {
    background: linear-gradient(to top, #000 0%, #b80000 100%);
}

.register, .register-button {
    background: linear-gradient(to top, #000 0%, #b80000 100%);
}

.gradient {
    background: #9e9e9e;
}

/* ===========================
   FRAME WD BOX
   =========================== */
.wd-box {
    width: 100%;
    background: rgba(0,0,0,0.35);
    border: 1px solid #00ffaa;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 0 12px rgba(0,255,170,0.3);
    font-family: 'Poppins', Arial, sans-serif;
    overflow: hidden;
}

.wd-title {
    font-size: 18px;
    font-weight: 700;
    color: #00ffaa;
    text-align: center;
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* ===========================
   WD WHEEL ANIMATION (RODA)
   =========================== */
.wd-wheel-container {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.wd-wheel-track {
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: wheelRotate 12s linear infinite;
}

@keyframes wheelRotate {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* ===========================
   WD ITEM LIST
   =========================== */
.wd-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0,0,0,0.45);
    border: 1px solid #00ffaa;
    padding: 10px 12px;
    border-radius: 10px;
    transition: .3s ease;
}

.wd-item:hover {
    transform: scale(1.02);
    box-shadow: 0 0 12px rgba(0,255,170,0.5);
}

.wd-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: url('https://cdn-icons-png.flaticon.com/512/847/847969.png') center/cover;
    border: 2px solid #00ffaa;
}

.wd-text {
    color: #fff;
    font-size: 14px;
}

.wd-user {
    font-weight: 700;
    color: #00ffaa;
}

/* ===========================
   TESTIMONI FRAME + CARD
   =========================== */
.wd-frame {
    background: rgba(0,0,0,0.35);
    border: 2px solid #00ffaa;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 18px;
    box-shadow: 0 0 18px rgba(0,255,170,0.3);
    font-family: 'Poppins', Arial, sans-serif;
}

.testi-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0,0,0,0.35);
    border: 1px solid #00ffaa;
    padding: 10px 12px;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 0 10px rgba(0,255,170,0.15);
    transition: 0.3s ease;
}

.testi-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 14px rgba(0,255,170,0.5);
}

.testi-img {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 2px solid #00ffaa;
    object-fit: cover;
}

.testi-name {
    font-size: 15px;
    font-weight: 700;
    color: #00ffaa;
}

.testi-city {
    font-size: 12px;
    color: #fff;
    opacity: 0.85;
}

.testi-text {
    color: #fff;
    font-size: 13px;
    line-height: 1.35;
    margin-top: 3px;
}

/* ===========================
   MODERN TABLE
   =========================== */
.modern-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 15px;
    color: #fff;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #00ffaa;
    box-shadow: 0 0 15px rgba(0,255,170,0.3);
}

.modern-table th {
    background: linear-gradient(90deg, #00ffaa, #00bcd4);
    color: #000;
    padding: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
}

.modern-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(0,255,170,0.2);
    text-align: center;
}

.modern-table tr:nth-child(even) {
    background: rgba(0,255,170,0.05);
}

.modern-table tr:nth-child(odd) {
    background: rgba(0,255,170,0.10);
}

.modern-table tr:hover {
    background: rgba(0,255,170,0.25);
    transition: .3s ease;
}
