
/* DAMAITOTO BRAND PAGE CSS */

:root{
  --bg:#0b1220;
  --card:rgba(255,255,255,0.06);
  --stroke:rgba(255,255,255,0.12);
  --text:#e5e7eb;
  --muted:rgba(229,231,235,0.72);
  --primary:#f59e0b;
  --secondary:#ef4444;
  --radius:20px;
  --shadow:0 20px 60px rgba(0,0,0,0.5);
}

*{margin:0;padding:0;box-sizing:border-box;}

body{
  font-family:'Poppins',sans-serif;
  background:
    radial-gradient(circle at 20% 20%, rgba(245,158,11,0.2), transparent 60%),
    radial-gradient(circle at 80% 30%, rgba(239,68,68,0.2), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.7;
}

.nav{
  position:sticky;
  top:0;
  background:rgba(11,18,32,0.8);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--stroke);
}

.nav .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 20px;
}

.nav a{
  color:var(--text);
  text-decoration:none;
  margin:0 10px;
  font-size:14px;
  opacity:0.8;
  transition:0.3s;
}

.nav a:hover{
  opacity:1;
  color:var(--primary);
}

.container{
  max-width:1100px;
  margin:auto;
  padding:40px 20px;
}

.card{
  background:var(--card);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  padding:30px;
  box-shadow:var(--shadow);
  margin-bottom:30px;
}

h1{font-size:32px;margin-bottom:15px;}
h2{font-size:22px;margin-top:25px;margin-bottom:10px;}
h3{font-size:18px;margin-top:20px;margin-bottom:8px;}

p{margin-bottom:12px;color:var(--muted);}
ul{margin-left:20px;margin-top:10px;}
li{margin-bottom:8px;}

.btn{
  display:inline-block;
  padding:12px 20px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--secondary),var(--primary));
  color:white;
  font-weight:600;
  text-decoration:none;
  transition:0.3s ease;
  border:none;
}

.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

footer{
  text-align:center;
  padding:30px 0;
  border-top:1px solid var(--stroke);
  color:rgba(255,255,255,0.6);
  font-size:13px;
}

table{
  width:100%;
  border-collapse:collapse;
  margin-top:15px;
}

table th, table td{
  padding:10px;
  border:1px solid var(--stroke);
  text-align:left;
}

table th{
  background:rgba(255,255,255,0.05);
}

@media (max-width:768px){
  h1{font-size:26px;}
  .container{padding:25px 15px;}
  .nav .container{flex-direction:column;align-items:flex-start;}
  .nav a{margin:5px 0;}
  .btn{width:100%;text-align:center;}
}
