* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #0e0e0e;
    color: #eaeaea;
    line-height: 1.6;
}

.hero {
    background: linear-gradient(135deg, #2b5876, #4e4376);
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.buttons {
    margin-top: 25px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 5px;
    background: #00c6ff;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

.btn.secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
}

.section h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.section ul {
    list-style: none;
    margin-top: 15px;
}

.section ul li {
    margin-bottom: 10px;
}

.dark {
    background: #161616;
}

.server-box {
    margin-top: 15px;
    padding: 15px;
    background: #222;
    border-radius: 6px;
    display: inline-block;
}

.responsive-video {
  position: relative;
  width: 100%;  
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 800px;
}

.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

footer {
    background: #0a0a0a;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}


