/* --- GENERAL RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
}

body {
    background: #000;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: #39ff14;
    transition: 0.3s;
}

a:hover {
    color: #00ff99;
}

/* --- HEADER --- */
.site-header {
    width: 100%;
    background: rgba(0,0,0,0.8);
    padding: 15px 0;
    position: fixed;
    top: 0;
    z-index: 100;
    box-shadow: 0 0 10px #39ff14;
}

.header-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.green-text {
    color: #39ff14;
}

.nav a {
    margin-left: 25px;
    font-weight: bold;
}

.nav a.active {
    border-bottom: 2px solid #39ff14;
}

/* --- HERO / SECTIONS --- */
.hero, .about-section, .pricing-section, .launch-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 20px;
}

/* --- HERO CONTENT (ORIGINAL LAYOUT) --- */
.hero-content {
    display: flex;
    justify-content: space-between;  /* text left, image right */
    align-items: center;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1 1 500px;
    padding-right: 20px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14;
}

.hero-sub {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 10px 5px;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: #39ff14;
    color: #000;
    box-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14;
}

.btn-primary:hover {
    background: #00ff99;
    box-shadow: 0 0 20px #00ff99, 0 0 40px #00ff99;
}

.btn-ghost {
    background: transparent;
    border: 2px solid #39ff14;
    color: #39ff14;
}

.btn-ghost:hover {
    background: #39ff14;
    color: #000;
}

/* --- PROFILE IMAGE (RIGHT SIDE) --- */
.profile-shell {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-shell img {
    width: 200px;        /* square */
    height: 200px;
    object-fit: cover;    
    border-radius: 10px;
    border: 2px solid #39ff14;
    box-shadow: 0 0 15px #39ff14, 0 0 30px #39ff14;
}

/* --- GLOW CARDS --- */
.glow-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.glow-card {
    background: rgba(0,0,0,0.7);
    border: 2px solid #39ff14;
    padding: 20px;
    flex: 1 1 220px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14;
    transition: 0.3s;
}

.glow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px #00ff99, 0 0 40px #00ff99;
}

.gc-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.gc-title {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gc-text {
    font-size: 0.95rem;
}

.gc-price {
    margin-top: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    color: #39ff14;
}

/* --- FORMS --- */
.launch-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;  
}

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 10px;
    border-radius: 8px;
    border: 2px solid #39ff14;
    background: rgba(0,0,0,0.8);
    color: #fff;
    outline: none;
    width: 100%;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

button[type="submit"] {
    margin-top: 10px;
}

/* --- PACKAGE LINKS --- */
.payment-links {
    text-align: center;
    margin-bottom: 60px;
}

.payment-links h2 {
    color: #39ff14;
    margin-bottom: 20px;
}

.payment-links ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
}

.payment-links li {
    list-style: none;
    background-color: rgba(0,0,0,0.7);
    border: 2px solid #39ff14;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    font-size: 1.1rem;
    width: 180px;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    cursor: pointer;
}

.payment-links li:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px #39ff14, 0 0 30px #39ff14;
    background-color: #39ff14;
    color: #000;
}

.payment-links li a {
    color: inherit;
    text-decoration: none;
    font-weight: bold;
}

.payment-links li.active {
    background-color: #39ff14;
    color: #000;
}

/* --- CASH APP NOTE --- */
.cashapp-note {
    margin-top: 15px;
    font-size: 0.95rem;
}

.cashapp-note a {
    color: #39ff14;
    text-decoration: underline;
}

/* --- MODAL --- */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.85);
}

.modal-content {
    background-color: rgba(0,0,0,0.9);
    margin: 15% auto;
    padding: 30px;
    border: 2px solid #39ff14;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    position: relative;
}

.modal-content button {
    background-color: #39ff14;
    color: #000;
    font-weight: bold;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
}

.modal-content button:hover {
    background-color: #00ff99;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #39ff14;
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: bold;
}

/* --- FOOTER --- */
.site-footer {
    background: rgba(0,0,0,0.8);
    padding: 20px 0;
    margin-top: 50px;
    box-shadow: 0 0 10px #39ff14;
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-nav a {
    margin-left: 20px;
}

/* --- FLOATING SYMBOLS & EMOJIS --- */
.symbol-layer, .emoji-layer {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .profile-shell {
        margin-top: 20px;
    }

    .glow-grid {
        flex-direction: column;
        align-items: center;
    }

    .payment-links ul {
        flex-direction: column;
        align-items: center;
    }
}

/* --- SELECT DROPDOWN --- */
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  z-index: 1;
}

select:focus {
  outline: none;
  border-color: #00ff7f;
  box-shadow: 0 0 10px #00ff7f;
}

select option:hover {
  background-color: #00ff7f;
  color: #0d0d0d;
}
