/* Main */
:root {
  --primary-bg: #0b1320;
  --card-bg: #152033;
  --text-color: #ffffff;
  --accent-color: #3b82f6;
  --text-muted: #94a3b8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #050910;
  color: var(--text-color);
  line-height: 1.6;
}

/* Header */
header {
  background-color: var(--primary-bg);
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: white;
  text-transform: uppercase;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: white;
}

/* Hero Section */
.hero {
  background: linear-gradient(180deg, var(--primary-bg) 0%, #050910 100%);
  padding: 5rem 5%;
  text-align: center;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* Sections */
section {
  padding: 4rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--accent-color);
  padding-left: 1rem;
}

/* Grid Layouts */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Cards */
.card {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

.card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Creator */
.creator-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 2px solid #fff;
  display: block;
}
.social-links {
  display: flex;
  gap: 1rem;
}

.social-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s;
}

.social-btn:hover {
  background: var(--accent-color);
}

/* Product Highlight */
.badge {
  position: absolute;
  top: 15px;
  right: 15px;

  background: var(--accent-color);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;

  z-index: 10;
}

/* Footer */
footer {
  text-align: center;
  padding: 3rem;
  background-color: var(--primary-bg);
  color: var(--text-muted);
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  nav ul {
    display: none;
  }
}


/* Modal */
.privacy-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 9, 16, 0.9);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease;
    padding: 20px;
    animation: fadeIn 0.4s ease-out;
}

.privacy-modal {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: translateY(0);
    transition: transform 0.5s ease;
    animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.privacy-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.privacy-modal h2 {
    margin-bottom: 1rem;
    color: white;
}

.privacy-modal p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

body.no-scroll {
    overflow: hidden;
}

.privacy-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.privacy-overlay.hidden .privacy-modal {
    transform: translateY(20px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Language Switcher */
.lang-switch {
    display: flex;
    gap: 0.5rem;
    margin-left: 2rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-muted);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
}

.lang-btn:hover {
    border-color: white;
    color: white;
}

.lang-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

@media (max-width: 768px) {
    nav .lang-switch {
        display: none; 
    }
}