:root {
    --bg-color: #050510;
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --accent: #00f0ff;
    /* Cyan */
    --accent-glow: rgba(0, 240, 255, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-head: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.brand {
    font-family: var(--font-head);
    font-size: 1rem;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeUp 1s ease-out 0.5s forwards;
}

.title {
    font-family: var(--font-head);
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #a0a0b0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: fadeUp 1s ease-out 0.8s forwards;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 1s ease-out 1.1s forwards;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-head);
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s;
    opacity: 0;
    animation: fadeUp 1s ease-out 1.4s forwards;
}

.cta-btn:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 20px var(--accent-glow);
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.5;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.scroll-hint span {
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.line {
    width: 1px;
    height: 50px;
    background: var(--text-muted);
}

/* Curriculum Section */
.curriculum {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 4px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-number {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.card h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    z-index: 2;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

/* --- ANIMATIONS --- */
.card-visual {
    margin-top: auto;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Day 1 */
.anim-day1 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
}

.flow-line {
    width: 30px;
    height: 2px;
    background: #333;
    position: relative;
}

.card:hover .flow-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: var(--accent);
    animation: flow 1s infinite linear;
}

@keyframes flow {
    0% {
        left: 0;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Day 2 */
.anim-day2 {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.browser-window {
    width: 120px;
    height: 80px;
    border: 1px solid #444;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.browser-header {
    height: 15px;
    border-bottom: 1px solid #444;
    display: flex;
    align-items: center;
    padding-left: 5px;
    gap: 3px;
}

.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #666;
}

.web-content {
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.content-line {
    width: 100%;
    height: 5px;
    background: #333;
    border-radius: 2px;
}

.ad-slot {
    height: 30px;
    border: 1px dashed #444;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.scanner-line {
    position: absolute;
    top: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    opacity: 0;
}

.final-ad {
    font-size: 0.6rem;
    color: var(--accent);
    opacity: 0;
    font-weight: bold;
}

.card:hover .scanner-line {
    animation: scan 1.5s ease-in-out infinite;
    opacity: 1;
}

.card:hover .final-ad {
    animation: appear 1.5s infinite;
}

@keyframes scan {
    0% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

@keyframes appear {

    0%,
    50% {
        opacity: 0;
    }

    60%,
    100% {
        opacity: 1;
    }
}

/* Day 3 */
.anim-day3 {
    display: flex;
    gap: 1rem;
}

.gauge-container {
    width: 40px;
    text-align: center;
}

.gauge-bar {
    height: 60px;
    width: 10px;
    background: #333;
    margin: 0 auto;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.gauge-fill {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: var(--accent);
    transition: height 1s;
}

.gauge-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.card:hover .gauge-fill {
    height: 90%;
}

.card:hover .gauge-fill.delay {
    transition-delay: 0.2s;
    height: 80%;
}

/* Day 4 */
.anim-day4 {
    position: relative;
    width: 80px;
    height: 80px;
}

.radar {
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.radar-sweep {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transform-origin: left;
}

.blip {
    position: absolute;
    top: 30%;
    right: 30%;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
}

.status-text {
    position: absolute;
    bottom: -20px;
    width: 100%;
    text-align: center;
    font-size: 0.6rem;
    color: var(--accent);
}

.card:hover .radar-sweep {
    animation: sweep 2s infinite linear;
}

.card:hover .blip {
    animation: blip 2s infinite 0.5s;
}

@keyframes sweep {
    to {
        transform: rotate(360deg);
    }
}

@keyframes blip {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* Day 5 */
.anim-day5 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2rem;
}

.icon-gear {
    color: var(--text-muted);
}

.icon-hand {
    color: var(--accent);
}

.card:hover .icon-gear {
    animation: spin 4s infinite linear;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Day 6 */
.anim-day6 {
    position: relative;
    width: 100px;
    height: 80px;
}

.center-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
}

.sat-node {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #444;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transition: all 0.5s;
}

.card:hover .n1 {
    transform: translate(-30px, 0);
    background: #fff;
}

.card:hover .n2 {
    transform: translate(30px, 0);
    background: #fff;
}

.card:hover .n3 {
    transform: translate(0, -30px);
    background: #fff;
}

.card:hover .n4 {
    transform: translate(0, 30px);
    background: #fff;
}

/* Day 7 */
.anim-day7 {
    font-size: 2.5rem;
    color: var(--accent);
}

.lock-container {
    position: relative;
}

.lock-shackle {
    width: 20px;
    height: 20px;
    border: 4px solid var(--accent);
    border-bottom: 0;
    border-radius: 20px 20px 0 0;
    position: absolute;
    top: -15px;
    left: 6px;
    transform-origin: bottom right;
    transition: transform 0.5s;
}

.lock-body {
    width: 32px;
    height: 24px;
    background: var(--accent);
    border-radius: 4px;
}

.card:hover .lock-shackle {
    transform: rotate(45deg);
}

/* Day 8 */
.anim-day8 {
    width: 100px;
    height: 70px;
    border: 1px solid #444;
    background: #000;
    position: relative;
}

.wireframe {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2px;
    gap: 2px;
}

.wf-nav {
    width: 100%;
    height: 10px;
    background: #333;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.wf-body {
    flex: 1;
    display: flex;
    gap: 2px;
    overflow: hidden;
}

.wf-sidebar {
    width: 25%;
    height: 100%;
    background: #222;
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.5s ease 0.2s;
}

.wf-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wf-block {
    background: var(--accent);
    opacity: 0;
    height: 10px;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wf-block.b1 {
    width: 80%;
    transition-delay: 0.4s;
}

.wf-block.b2 {
    width: 60%;
    transition-delay: 0.5s;
    background: #444;
}

.card:hover .wf-nav {
    transform: translateY(0);
    opacity: 1;
}

.card:hover .wf-sidebar {
    transform: translateX(0);
    opacity: 1;
}

.card:hover .wf-block {
    transform: scale(1);
    opacity: 1;
}

/* Day 9 */
.anim-day9 {
    width: 100%;
    font-family: monospace;
    font-size: 0.7rem;
    color: var(--accent);
}

.terminal {
    display: flex;
    flex-direction: column;
}

.terminal-line {
    opacity: 0;
}

.card:hover .terminal-line:nth-child(1) {
    animation: type 0.5s forwards;
}

.card:hover .terminal-line:nth-child(2) {
    animation: type 0.5s 0.5s forwards;
}

.card:hover .terminal-line:nth-child(3) {
    animation: type 0.5s 1s forwards;
}

@keyframes type {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Bonus */
.bonus-section {
    margin-top: 6rem;
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
}

.bonus-card {
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.1), rgba(0, 0, 0, 0.8));
    border: 2px solid var(--accent);
    padding: 4rem;
    text-align: center;
    border-radius: 10px;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, var(--accent), transparent 30%);
    animation: rotate 4s linear infinite;
    opacity: 0.1;
    z-index: 0;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.bonus-card>* {
    position: relative;
    z-index: 1;
}

.bonus-tag {
    display: inline-block;
    background: var(--accent);
    color: #000;
    padding: 0.5rem 1.5rem;
    font-weight: 900;
    font-size: 1rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    letter-spacing: 2px;
    box-shadow: 0 0 20px var(--accent);
}

.bonus-card h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.bonus-perks {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.perk-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.perk-item:hover {
    background: rgba(0, 240, 255, 0.05);
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.p-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.3));
    transition: transform 0.4s;
}

.perk-item:hover .p-icon {
    transform: scale(1.1) rotate(10deg);
}

.p-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.p-text strong {
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.p-text span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.loading-bar-container {
    width: 100%;
    height: 6px;
    background: #333;
    margin-top: 3rem;
    border-radius: 3px;
    overflow: hidden;
}

.loading-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--accent);
    transition: width 2s;
    box-shadow: 0 0 20px var(--accent);
}

.bonus-card:hover .loading-bar-fill {
    width: 100%;
}

/* Footer */
.footer {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(to top, #000, transparent);
}

.footer h2 {
    font-family: var(--font-head);
    font-size: 3rem;
    margin-bottom: 2rem;
}

.final-btn {
    padding: 1.2rem 4rem;
    font-size: 1.2rem;
    background: var(--accent);
    color: #000;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}

.final-btn:hover {
    transform: scale(1.05);
}

.copyright {
    margin-top: 4rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 1rem;
    }

    .title {
        font-size: 2.8rem;
        /* Smaller title */
        line-height: 1.1;
    }

    .subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .curriculum {
        padding: 4rem 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .grid-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card {
        padding: 1.5rem;
        min-height: auto;
    }

    .card-number {
        font-size: 2rem;
    }

    .bonus-card {
        padding: 2rem 1.5rem;
    }

    .bonus-card h3 {
        font-size: 1.8rem;
    }



    .footer {
        padding: 4rem 1rem;
    }

    .footer h2 {
        font-size: 2rem;
    }

    .final-btn {
        width: 100%;
        padding: 1rem 2rem;
    }

    .footer-links {
        gap: 1rem;
        flex-direction: column;
        /* Stack links on mobile */
        align-items: center;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2.2rem;
    }

    .legal-container {
        padding: 0 1rem 4rem 1rem;
    }

    .legal-header {
        padding: 2rem 1rem;
    }
}

/* --- LEGAL PAGES --- */
.legal-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 3rem;
}

.legal-header .brand a {
    color: var(--accent);
    text-decoration: none;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 4rem 2rem;
}

.legal-content section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-content h3 {
    font-family: var(--font-head);
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.legal-content p,
.legal-content li {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    list-style-position: inside;
    margin-bottom: 1rem;
}

.highlight-section {
    background: rgba(255, 0, 0, 0.05);
    /* Slight red tint */
    border: 1px solid rgba(255, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 4px;
}

.highlight-section h3 {
    color: #ff4d4d;
    /* Red warning color */
}

.warning-text {
    color: #ffcccc !important;
    font-weight: 500;
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin-top: 3rem;
    /* Added spacing */
    margin-bottom: 2rem;
    flex-wrap: wrap;
    padding: 0;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}


/* --- ENROLLMENT PAGE --- */
.enroll-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem 4rem 1rem;
    min-height: 60vh;
}

.inclusions-box {
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid var(--accent-glow);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeUp 0.5s ease-out;
}

.inclusions-box h4 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-family: var(--font-head);
    letter-spacing: 1px;
    font-size: 1rem;
}

.inclusions-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.8rem;
}

.inclusions-list li {
    color: #fff;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inclusions-list .icon {
    font-size: 1.2rem;
}


/* --- CONTACT PAGE --- */
.contact-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 50vh;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--accent);
    background: rgba(0, 240, 255, 0.05);
    transform: translateY(-5px);
}

.c-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-family: var(--font-head);
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s;
}

.contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.step-header {
    margin-bottom: 2rem;
    position: relative;
    padding-left: 3rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: -5px;
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.1);
    font-weight: 900;
}

.step-header h3 {
    font-family: var(--font-head);
    color: var(--accent);
    letter-spacing: 2px;
}

/* Form Styling */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group.half {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

input,
textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    color: #fff;
    border-radius: 4px;
    font-family: var(--font-body);
    transition: all 0.3s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkbox-group input {
    width: auto;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--accent);
    text-decoration: none;
}

.full-width {
    width: 100%;
    margin-top: 1rem;
}

/* Price Box */
.price-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.5) 100%);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.original-price {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.discount-price {
    color: #fff;
}

.discount-price .badge {
    display: inline-block;
    background: #ff4d4d;
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.price-main {
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--accent);
    font-weight: bold;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Payment Methods */
.method-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.method-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.method-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.method-header h4 {
    font-family: var(--font-head);
    color: #fff;
    font-size: 1rem;
}

.method-details p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.copy-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-top: 0.5rem;
}

.copy-row code {
    font-family: monospace;
    color: var(--accent);
    flex: 1;
    overflow-x: auto;
}

.copy-btn {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
    font-size: 0.7rem;
    padding: 4px 8px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.2s;
}

.copy-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.instruction-box {
    background: rgba(255, 200, 0, 0.1);
    border-left: 3px solid #ffcc00;
    padding: 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #ffd080;
}

.text-btn {
    display: block;
    width: 100%;
    margin-top: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    text-decoration: underline;
}

.text-btn:hover {
    color: #fff;
}