
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arial', sans-serif;
  color: #fff;
  background: linear-gradient(135deg, #001f3f, #3b0a57);
  min-height: 100vh;

    font-size: 18px;}

header {
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.menu-toggle {
  font-size: 1.8em;
  cursor: pointer;
}

#hamburgerMenu {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(5px);
  color: #fff;
  transition: right 0.3s ease;
  z-index: 999;
  padding-top: 60px;
}

#hamburgerMenu.open {
  right: 0;
}

#hamburgerMenu ul {
  list-style: none;
}

#hamburgerMenu li {
  padding: 15px;
  border-bottom: 1px solid #444;
}

#hamburgerMenu a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.hero {
  text-align: center;
  padding: 80px 20px 30px 20px;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.plan-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.2s ease, background 0.2s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.plan-card h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.plan-card p {
  margin-bottom: 15px;
}

button {
  padding: 10px 20px;
  border: none;
  background: #ff004c;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
  background: #ff3370;
  box-shadow: 0 0 10px #ff3370;
}

.free {
  border: 2px solid #00ff99;
}

/* Modal popup */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  color: #000;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  max-width: 300px;
  width: 90%;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  animation: fadeIn 0.3s ease;
}



@keyframes fadeIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.plan-card button {
  display: none;
}

.plan-card:hover button {
  display: inline-block;
}

.toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  opacity: 0.9;
  z-index: 2000;
  animation: fadeInOut 3s ease;
}

@keyframes fadeInOut {
  0% { transform: translateX(-50%) translateY(-20px); opacity: 0; }
  10% { transform: translateX(-50%) translateY(0); opacity: 0.9; }
  90% { transform: translateX(-50%) translateY(0); opacity: 0.9; }
  100% { transform: translateX(-50%) translateY(-20px); opacity: 0; }
}

.content-modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.content-box {
  background: #fff;
  color: #000;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  position: relative;
}

.content-modal.show .content-box {
  transform: translateX(0);
  opacity: 1;
}

.close-content {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 24px;
  color: #333;
}
.footer {
    text-align: center;
    padding: 15px;
    color: #fff;
    font-size: 14px;
    background: #000;
    margin-top: 30px;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;

    font-size: 18px;}

.main-content {
    flex: 1;
}

.footer {
    text-align: center;
    padding: 15px;
    color: #fff;
    font-size: 14px;
    background: #000;
}


.close-btn {
    position: absolute;
    top: 100px;
    right: 60px;
    font-size: 50px;
    color: #FF0000;
    cursor: pointer;
    font-weight: bold;
    z-index: 1000;
}
.close-btn:hover {
    color: #ff0033;
}
