:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('hero-image.jpg');
    background-size: cover;
    color: white;
    text-align: center;
}

header {
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('hero-image.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 5rem 1rem;
    border-top: 4px solid #986806;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.rem 1.5rem;
    border-radius: 2px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #0A4EFF;
}
.youtube-card {
  border-top: 4px solid #ff0000;
}

.tiktok-card {
  border-top: 4px solid #000000;
}

.ig-card {
    position: relative;
    padding-top: 5px;
}
.ig-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background-image: url('3mz.png');
  background-size: cover;
  background-repeat: no-repeat;
}
    
.create-card {
  border-top: 4px solid #986806;
}

.sodium-card {
  border-top: 4px solid #4CAF50;
}

.download-card {
  border-top: 4px solid #989898;
}

.button {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  background-color: #ff0000;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  justify-content: center;
}
.tiktok {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  background-color: #000000;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  justify-content: center;
}

.button:hover {
  background-color: #cc0000;
  transform: scale(1.05);
}

.green-button {
  background-color: #4CAF50;
}
.ig {
    background-image: url("3mz.png");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    justify-content: center;
}

.green-button:hover {
  background-color: #388E3C;
}

.brown-button:hover {
  background-color: #DA8B01;
}

.brown-button {
  background-color: #DA8B01;
}

.button-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  fill: currentColor;
  vertical-align: middle;
}

.emoji {
  font-size: 1.4rem;
  margin-right: 8px;
}
footer {
    border-top: 4px solid #986806;
}

/* Add responsive design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }
    
    .nav-links {
        margin-top: 1rem;
    }
    
    .nav-links li {
        margin: 0 0.5rem;
    }
}
