:root {
    --primary-gold: #D4AF37;
    --primary-gold-dark: #B38F24;
    --accent-pink: #FF758C;
    --accent-pink-hover: #FF5271;
    --pink-light: #FFF0F3;
    --gold-gradient: linear-gradient(135deg, #E6C875 0%, #D4AF37 50%, #B38F24 100%);
    --pink-gradient: linear-gradient(135deg, #FF758C 0%, #FF5271 100%);
    --gold-pink-gradient: linear-gradient(135deg, #D4AF37 0%, #FF758C 100%);
    --bg-main: #FAFAFD;
    --bg-light: #FFFFFF;
    --text-dark: #1E1B18;
    --text-muted: #66605A;
    --phone-bezel: #F5EFEB;
    --card-shadow: 0 15px 35px rgba(212, 175, 55, 0.12);
    --border-radius: 24px;
    --danger-red: #E53935;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: radial-gradient(circle at 10% 20%, rgba(255, 240, 243, 0.8) 0%, rgba(250, 250, 253, 1) 40%),
                radial-gradient(circle at 90% 80%, rgba(247, 233, 196, 0.4) 0%, rgba(250, 250, 253, 1) 50%);
    background-attachment: fixed;
    color: var(--text-dark);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- NAVIGATION --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 5%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 24px;
    color: var(--text-dark);
    text-decoration: none;
}

.logo-container img {
    height: 40px;
    margin-bottom: 0px;
}

.logo-white {
    filter: none;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 6px 14px;
    border-radius: 20px;
}

.nav-links a:hover {
    color: var(--accent-pink);
    background: var(--pink-light);
}

/* --- HERO SECTION --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 70px 5% 100px;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    background: var(--gold-pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.highlight {
    background: var(--gold-pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* --- BUTTONS & HYPE METER --- */
.store-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.store-btn {
    display: flex;
    align-items: center;
    background: var(--pink-gradient);
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 117, 140, 0.35);
    cursor: pointer;
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 117, 140, 0.5);
}

.store-btn img {
    height: 24px;
    margin-right: 12px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-text span:first-child {
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-text span:last-child {
    font-size: 16px;
}

.hype-meter {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding: 18px 24px;
    border-radius: 24px;
    display: inline-block;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.08);
}

.hype-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hype-counters {
    display: flex;
    gap: 16px;
}

.counter-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--pink-light);
    border: 1px solid rgba(255, 117, 140, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-pink-hover);
    box-shadow: 0 4px 12px rgba(255, 117, 140, 0.1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pop-animation {
    transform: scale(1.1);
    color: var(--primary-gold-dark);
}

.counter-badge img {
    height: 16px;
    filter: invert(53%) sepia(82%) saturate(416%) hue-rotate(309deg) brightness(101%) contrast(101%);
}

/* --- HERO IMAGE AREA --- */
.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-phones {
    position: relative;
    width: 450px;
    height: 600px;
    transform: translateX(40px);
}

.phone-mockup {
    position: absolute;
    background-color: #1A1A1A;
    border-radius: 44px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 260px;
    overflow: hidden;
    border: 3px solid #D4AF37;
}

.phone-mockup img {
    width: 100%;
    height: auto;
    border-radius: 34px;
    display: block;
}

.business-phone {
    top: 0;
    left: 0;
    z-index: 1;
}

.normal-phone {
    bottom: 0;
    right: 0;
    z-index: 2;
}

/* --- APP SHOWCASE SECTION --- */
.app-showcase {
    background-color: var(--bg-light);
    padding: 100px 5% 80px;
    text-align: center;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    box-shadow: 0 -15px 40px rgba(212, 175, 55, 0.06);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.showcase-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    background: var(--gold-pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.showcase-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.screenshot-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.screenshot-card {
    flex: 1;
    min-width: 260px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.screenshot-card img {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 6px solid #FFF;
    outline: 2px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-card:hover img {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(255, 117, 140, 0.25);
}

.screenshot-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.screenshot-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    padding: 0 10px;
}

/* --- MAIN & CONTAINER SECTION --- */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* --- CARDS (Generic / Privacy / Support / Delete Account / RSVP) --- */
.privacy-container, .support-section, .content-container {
    flex: 1;
    padding: 40px 5% 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.privacy-content, .support-card, .card, .rsvp-card {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 32px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.support-card, .card {
    max-width: 600px;
}

.rsvp-card {
    max-width: 550px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    padding: 40px;
}

.privacy-content h1, .card h1 {
    color: var(--text-dark);
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.card h1 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.date {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.privacy-content h3 {
    color: var(--primary-gold-dark);
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.privacy-content p, .card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.privacy-content ul {
    margin-left: 20px;
    margin-bottom: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- FOOTER --- */
footer {
    background-color: var(--bg-light);
    padding: 30px 5% 40px;
    text-align: center;
    margin-top: auto;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-links {
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    margin: 0 15px;
}

.footer-links a:hover {
    color: var(--accent-pink);
}

.footer-copyright {
    color: #A09890;
    font-size: 0.9rem;
}

/* --- POPUP MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 24px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    transform: translateY(30px);
    transition: transform 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-content h3 {
    color: var(--primary-gold-dark);
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.modal-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1rem;
}

.close-btn {
    background: var(--pink-gradient);
    color: white;
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 6px 18px rgba(255, 117, 140, 0.35);
}

.close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255, 117, 140, 0.5);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .store-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image-wrapper {
        justify-content: center;
        margin-top: 40px;
        position: static;
        transform: none;
    }

    .hero-phones {
        position: static;
        width: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        transform: none;
    }

    .phone-mockup {
        position: static;
        width: 100%;
        max-width: 280px;
    }
}

/* --- RSVP & INVITATION STYLES --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.hidden {
    display: none !important;
}

.badge {
    display: inline-block;
    background: var(--pink-light);
    color: var(--accent-pink-hover);
    border: 1px solid rgba(255, 117, 140, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.rsvp-card h1 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.rsvp-card p.subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.event-info {
    background: #FFFDF9;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 28px;
    text-align: left;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-icon {
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group label .required {
    color: var(--accent-pink);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #EAE6E1;
    border-radius: 14px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    background: #FAFAFA;
}

.form-control:focus {
    border-color: var(--primary-gold);
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.attendance-options {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.radio-tile {
    flex: 1;
    position: relative;
}

.radio-tile input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.tile-content {
    border: 2px solid #EAE6E1;
    border-radius: 14px;
    padding: 14px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all 0.2s ease;
    background: #FAFAFA;
}

.radio-tile input:checked + .tile-content {
    border-color: var(--accent-pink);
    background: var(--pink-light);
    color: var(--accent-pink-hover);
}

.btn-primary, .submit-btn {
    width: 100%;
    background: var(--gold-pink-gradient);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-primary:hover, .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 117, 140, 0.4);
}

.btn-primary:disabled, .submit-btn:disabled {
    background: #CCCCCC;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.error-msg {
    color: #D93025;
    font-size: 0.85rem;
    margin-top: 10px;
    text-align: center;
}

/* --- DELETE ACCOUNT STYLES --- */
.icon-warning {
    font-size: 48px;
    margin-bottom: 20px;
}

.data-list {
    text-align: left;
    background: #FFFDF9;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.data-list h4 {
    margin-bottom: 12px;
    color: var(--text-dark);
}

.data-list ul {
    list-style-type: none;
    color: var(--text-muted);
}

.data-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.data-list li::before {
    content: "•";
    color: var(--danger-red);
    font-weight: bold;
    font-size: 1.2rem;
}

.btn-delete {
    display: inline-block;
    background-color: var(--danger-red);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
    width: 100%;
    margin-bottom: 16px;
    cursor: pointer;
    border: none;
}

.btn-delete:hover {
    background-color: #C62828;
    transform: translateY(-2px);
}

.btn-cancel {
    display: inline-block;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    padding: 10px;
    transition: color 0.3s;
}

.btn-cancel:hover {
    color: var(--text-dark);
}

.privacy-content a {
    color: var(--accent-pink);
    text-decoration: none;
    font-weight: 500;
}

.privacy-content a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .privacy-content, .support-card, .card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    .privacy-content h1, .card h1 {
        font-size: 1.8rem;
    }
}
