/* ===========================
   E-COIN GLOBAL THEME
   Dark + Gold | Premium
=========================== */

*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: radial-gradient(circle at top, #2a2a2a, #000);
    color:#e6e6e6;
    line-height:1.6;
}

/* CONTAINER */
.container{
    max-width:920px;
    margin:0 auto;
    padding:24px;
}

/* HEADER */
.page-header{
    text-align:center;
    margin-bottom:28px;
}

.page-header h1{
    color:#d4af37;
    font-size:28px;
    margin-bottom:6px;
}

.subtitle{
    font-size:14px;
    color:#aaa;
}

/* SECTIONS */
section{
    background:rgba(0,0,0,0.55);
    border:1px solid rgba(212,175,55,0.35);
    border-radius:14px;
    padding:22px;
    margin-bottom:20px;
    box-shadow:0 0 18px rgba(0,0,0,0.7);
}

section h2{
    color:#d4af37;
    font-size:20px;
    margin-top:0;
}

/* TEXT */
p{
    font-size:15px;
    color:#ddd;
}

ul{
    margin-left:20px;
    padding-left:0;
}

li{
    margin-bottom:6px;
    color:#ccc;
}

/* INFO BOX */
.info-box{
    background:linear-gradient(135deg,#111,#1a1a1a);
    border:1px dashed #d4af37;
    text-align:center;
}

/* BUTTONS */
.actions{
    text-align:center;
    margin-top:10px;
}

.btn{
    display:inline-block;
    padding:12px 28px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
    font-size:15px;
    transition:all 0.25s ease;
}

.btn.primary{
    background:linear-gradient(135deg,#d4af37,#ffd700);
    color:#000;
    box-shadow:0 0 16px rgba(212,175,55,0.9);
}

.btn.primary:hover{
    box-shadow:0 0 26px rgba(212,175,55,1);
}

.btn.secondary{
    background:#111;
    color:#d4af37;
    border:1px solid #d4af37;
}

.btn.secondary:hover{
    background:#d4af37;
    color:#000;
}

/* FOOTER */
footer{
    text-align:center;
    margin-top:30px;
    font-size:12px;
    color:#888;
}

/* RESPONSIVE */
@media(max-width:600px){
    .page-header h1{
        font-size:24px;
    }
    section{
        padding:18px;
    }
    p,li{
        font-size:14px;
    }
}
