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

:root {
    --bg1: #07111f;
    --bg2: #0c1a2e;
    --bright: #4dabf7;
    --mid: #1c7ed6;
    --dark: #0d47a1;
    --border: rgba(77, 171, 247, 0.22);
    --grid: rgba(255, 255, 255, 0.065);
    --text: #d0e8ff;
    --dim: rgba(77, 171, 247, 0.40);
}

body {
    font-family: 'Nunito', 'Varela Round', 'Comic Sans MS', sans-serif;
    background: var(--bg1);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

.stars,
.stars2,
.stars3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.stars {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="2" height="2"><circle cx="1" cy="1" r="0.5" fill="rgba(77,171,247,0.3)"/></svg>') repeat;
    animation: starsMove 100s linear infinite;
}

.stars2 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="3" height="3"><circle cx="1.5" cy="1.5" r="0.7" fill="rgba(77,171,247,0.2)"/></svg>') repeat;
    animation: starsMove 150s linear infinite;
}

.stars3 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4"><circle cx="2" cy="2" r="1" fill="rgba(77,171,247,0.1)"/></svg>') repeat;
    animation: starsMove 200s linear infinite;
}

@keyframes starsMove {
    from { transform: translateY(0); }
    to { transform: translateY(-2000px); }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(7, 17, 31, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--bright), #74c7ff, var(--mid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dim);
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bright);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 0 4rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(77, 171, 247, 0.15), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.gradient-text {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--bright), #74c7ff, var(--mid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dim);
    letter-spacing: 0.05em;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn {
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: 'Nunito', sans-serif;
    letter-spacing: 0.03em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--mid), var(--dark));
    color: #e8f4ff;
    box-shadow: 0 4px 15px rgba(28, 126, 214, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 126, 214, 0.4);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(28, 126, 214, 0.13);
    color: var(--bright);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: rgba(28, 126, 214, 0.2);
    transform: translateY(-2px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(12, 26, 46, 0.6);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dim);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--bright), #74c7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--dim);
    font-size: 1rem;
    margin-bottom: 3rem;
}

.features {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg1), var(--bg2));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(145deg, rgba(12, 26, 46, 0.6), rgba(7, 17, 31, 0.4));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--bright);
    box-shadow: 0 8px 25px rgba(77, 171, 247, 0.15);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--bright);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text);
    line-height: 1.7;
}

.demo-section {
    padding: 6rem 0;
    background: var(--bg1);
}

.demo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.demo-panel {
    position: relative;
    width: 432px;
    border-radius: 32px;
    overflow: hidden;
    border: 2px solid var(--border);
    border-top: 4px solid var(--bright);
    color: var(--text);
}

#larp-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(145deg, var(--bg1), var(--bg2));
}

#larp-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 17px, var(--grid) 17px, var(--grid) 18px),
        repeating-linear-gradient(90deg, transparent, transparent 17px, var(--grid) 17px, var(--grid) 18px);
}

#larp-wrap {
    position: relative;
    z-index: 2;
    padding: 20px 24px;
}

#larp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 12px;
}

#larp-title {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    min-width: 0;
    flex: 1;
}

#larp-title-sub {
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dim);
    white-space: nowrap;
    font-weight: 700;
}

#larp-title-main {
    font-size: 24px;
    font-weight: 900;
    white-space: nowrap;
    background: linear-gradient(90deg, var(--bright), #74c7ff, var(--mid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#larp-hdr-btns {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

#larp-minbtn,
#larp-nukebtn {
    width: 40px;
    height: 40px;
    border-radius: 16px;
    cursor: pointer;
    flex-shrink: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.12s, filter 0.12s;
}

#larp-minbtn:hover,
#larp-nukebtn:hover {
    transform: scale(1.12);
}

#larp-minbtn {
    background: linear-gradient(135deg, rgba(28, 126, 214, 0.30), rgba(13, 71, 161, 0.25));
    color: var(--bright);
    border: 1px solid var(--border);
}

#larp-minbtn svg {
    width: 22px;
    height: 22px;
    display: block;
}

#larp-nukebtn {
    color: #ff8a80;
    border: 1px solid rgba(255, 107, 107, 0.40);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.18), rgba(200, 50, 50, 0.12));
}

#larp-nukebtn:hover {
    filter: brightness(1.3);
}

#larp-nukebtn svg {
    width: 22px;
    height: 22px;
    display: block;
}

#larp-bal {
    margin-bottom: 10px;
    font-size: 19px;
    letter-spacing: 0.04em;
    color: var(--dim);
    font-weight: 700;
}

#larp-bal span {
    color: var(--bright);
    font-size: 26px;
    font-weight: 900;
}

#larp-inp {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 10px;
    border-radius: 20px;
    background: linear-gradient(135deg, #040c18, #091525);
    color: var(--bright);
    border: 2px solid var(--border);
    font-size: 22px;
    font-weight: 800;
    outline: none;
    font-family: 'Nunito', sans-serif;
}

#larp-btns {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

#larp-apply {
    flex: 1;
    padding: 12px 0;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    background: linear-gradient(135deg, var(--mid), var(--dark));
    color: #e8f4ff;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 0.04em;
    font-family: 'Nunito', sans-serif;
    transition: filter 0.15s, transform 0.1s;
}

#larp-apply:hover {
    filter: brightness(1.2);
    transform: scale(1.03);
}

#larp-reset-btn {
    padding: 12px 18px;
    border-radius: 20px;
    cursor: pointer;
    background: rgba(28, 126, 214, 0.13);
    color: var(--bright);
    border: 2px solid var(--border);
    font-size: 19px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    transition: filter 0.15s, transform 0.1s;
}

#larp-reset-btn:hover {
    filter: brightness(1.15);
    transform: scale(1.03);
}

.larp-div {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 12px 0;
}

.larp-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
}

.larp-row-label {
    font-size: 17px;
    letter-spacing: 0.03em;
    color: var(--dim);
    flex: 1;
    min-width: 0;
    font-weight: 700;
}

.larp-row-label b {
    color: var(--bright);
    font-weight: 900;
}

.larp-tog-wrap {
    position: relative;
    width: 60px;
    height: 32px;
    cursor: pointer;
    flex-shrink: 0;
}

.larp-tog-track {
    position: absolute;
    inset: 0;
    border-radius: 99px;
    background: rgba(28, 126, 214, 0.12);
    border: 2px solid var(--border);
    transition: background 0.2s;
}

.larp-tog-track.on {
    background: linear-gradient(135deg, var(--mid), var(--dark));
}

.larp-tog-thumb {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e8f4ff;
    transition: transform 0.2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.larp-tog-track.on .larp-tog-thumb {
    transform: translateX(28px);
}

#larp-stats-fields {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-right: 16px;
}

.larp-stat-row {
    display: flex;
    align-items: center;
    gap: 4px;
}

.larp-stat-lbl {
    font-size: 16px;
    color: var(--dim);
    width: 124px;
    flex-shrink: 0;
    font-weight: 700;
}

.larp-stat-inp {
    flex: 1;
    min-width: 0;
    padding: 6px 12px;
    border-radius: 16px;
    background: linear-gradient(135deg, #040c18, #091525);
    color: var(--bright);
    border: 2px solid var(--border);
    font-size: 18px;
    font-weight: 800;
    outline: none;
    font-family: 'Nunito', sans-serif;
}

.larp-sec-apply {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    background: linear-gradient(135deg, var(--mid), var(--dark));
    color: #e8f4ff;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.04em;
    font-family: 'Nunito', sans-serif;
    transition: filter 0.15s, transform 0.1s;
}

.larp-sec-apply:hover {
    filter: brightness(1.2);
    transform: scale(1.02);
}

#larp-txn-fields {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-right: 16px;
}

.larp-txn-row {
    display: flex;
    align-items: center;
    gap: 4px;
}

.larp-txn-lbl {
    font-size: 16px;
    color: var(--dim);
    width: 124px;
    flex-shrink: 0;
    font-weight: 700;
}

.larp-txn-inp {
    flex: 1;
    min-width: 0;
    padding: 6px 12px;
    border-radius: 16px;
    background: linear-gradient(135deg, #040c18, #091525);
    color: var(--bright);
    border: 2px solid var(--border);
    font-size: 18px;
    font-weight: 800;
    outline: none;
    font-family: 'Nunito', sans-serif;
}

.demo-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(77, 171, 247, 0.08);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 0.9rem;
    max-width: 600px;
}

.demo-note svg {
    flex-shrink: 0;
    color: var(--bright);
}

.purchase-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg2), var(--bg1));
}

.pricing-card {
    max-width: 600px;
    margin: 3rem auto 0;
    background: linear-gradient(145deg, rgba(12, 26, 46, 0.8), rgba(7, 17, 31, 0.6));
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(77, 171, 247, 0.1);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.price-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 2rem;
    color: var(--bright);
    font-weight: 900;
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--bright), #74c7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btc-label {
    font-size: 1.5rem;
    color: var(--dim);
    font-weight: 800;
}

.price-subtitle {
    color: var(--dim);
    font-size: 0.95rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
    font-weight: 700;
}

.pricing-feature svg {
    color: var(--bright);
    flex-shrink: 0;
}

.btn-purchase {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--mid), var(--dark));
    color: #e8f4ff;
    box-shadow: 0 6px 20px rgba(28, 126, 214, 0.3);
}

.btn-purchase:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28, 126, 214, 0.4);
}

.payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.payment-modal.active {
    display: flex;
}

.payment-content {
    background: linear-gradient(145deg, var(--bg2), var(--bg1));
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s;
}

.close-modal:hover {
    background: rgba(255, 107, 107, 0.2);
    color: #ff8a80;
}

.payment-content h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--bright);
    margin-bottom: 1rem;
}

.payment-instructions {
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.crypto-option {
    margin-bottom: 1.5rem;
}

.crypto-option h4 {
    color: var(--bright);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.payment-instructions strong {
    color: var(--bright);
    font-weight: 900;
}

.btc-address-container {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.btc-address {
    flex: 1;
    background: linear-gradient(135deg, #040c18, #091525);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: var(--bright);
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    word-break: break-all;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--mid), var(--dark));
    color: #e8f4ff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 800;
    font-size: 0.85rem;
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s;
    white-space: nowrap;
}

.copy-btn:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
}

.qr-code {
    text-align: center;
    margin-bottom: 2rem;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #040c18, #091525);
    border: 2px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dim);
    font-weight: 800;
    font-size: 1.1rem;
}

.qr-note {
    color: var(--dim);
    font-size: 0.85rem;
}

.payment-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(77, 171, 247, 0.08);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.payment-note svg {
    flex-shrink: 0;
    color: var(--bright);
    margin-top: 2px;
}

.payment-note span {
    color: var(--text);
    font-size: 0.85rem;
    line-height: 1.5;
}

.contact-info {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.contact-info p {
    color: var(--dim);
    font-size: 0.9rem;
}

.contact-info a {
    color: var(--bright);
    text-decoration: none;
    font-weight: 800;
}

.contact-info a:hover {
    text-decoration: underline;
}

.discord-highlight {
    display: inline-block;
    color: #5865F2;
    font-weight: 900;
    font-size: 1.2rem;
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    border: 2px solid #5865F2;
    background: rgba(88, 101, 242, 0.15);
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.5), 0 0 30px rgba(88, 101, 242, 0.3);
    animation: discordGlow 2s ease-in-out infinite;
}

@keyframes discordGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(88, 101, 242, 0.5), 0 0 20px rgba(88, 101, 242, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(88, 101, 242, 0.8), 0 0 30px rgba(88, 101, 242, 0.5);
    }
}

.crypto-amount {
    color: var(--bright);
    font-weight: 900;
    font-size: 1.1rem;
}

.faq-section {
    padding: 6rem 0;
    background: var(--bg1);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: linear-gradient(145deg, rgba(12, 26, 46, 0.4), rgba(7, 17, 31, 0.3));
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--bright);
    transform: translateY(-3px);
}

.faq-item h3 {
    color: var(--bright);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text);
    line-height: 1.7;
}

.footer {
    background: linear-gradient(180deg, var(--bg1), var(--bg2));
    border-top: 1px solid var(--border);
    padding: 2rem 0;
}

.footer-content {
    text-align: center;
}

.footer-content p {
    color: var(--dim);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .gradient-text {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
    }

    .features-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .pricing-card {
        padding: 2rem;
    }

    .amount {
        font-size: 2.5rem;
    }
}
