:root {
  --bg-dark: #070707;
  --bg-card: rgba(255, 255, 255, 0.05);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --accent-blue: #0655ff;
  --gradient-blue: linear-gradient(90deg, #0655ff 0%, #000b31 100%);
  --font-main: 'Inter', sans-serif;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 600;
}

p {
  margin: 0;
  color: var(--text-secondary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}
.logo img{
  width:200px;
  height:100%;
}

a:hover {
  opacity: 0.8;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s;
  border: none;
  font-size: 16px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(90deg, #0655ff 0%, #4a6fb5 100%);
  color: white;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
}

.btn-white {
  background: white;
  color: #0655ff;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: rgba(117, 117, 117, 0.13);
  border-radius: 32px;
  backdrop-filter: blur(8px);
  font-size: 14px;
  color: white;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.1);
}

.glow-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}