* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #9333ea;
    --dark-purple: #6b21a8;
    --light-purple: #c084fc;
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --success: #10b981;
    --whatsapp: #25d366;
    --youtube: #ff0000;
    --border: #2a2a2a;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated Stars Background */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.stars::before,
.stars::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--light-purple);
    box-shadow: 
        100px 200px var(--light-purple),
        200px 100px var(--primary-purple),
        300px 400px var(--light-purple),
        400px 50px var(--primary-purple),
        500px 300px var(--light-purple),
        600px 150px var(--primary-purple),
        700px 350px var(--light-purple),
        800px 250px var(--primary-purple),
        900px 450px var(--light-purple),
        1000px 100px var(--primary-purple),
        1100px 300px var(--light-purple),
        1200px 200px var(--primary-purple),
        150px 350px var(--light-purple),
        250px 450px var(--primary-purple),
        350px 150px var(--light-purple);
    animation: twinkle 3s infinite alternate;
}

.stars::after {
    animation-delay: 1.5s;
    box-shadow: 
        50px 250px var(--primary-purple),
        150px 50px var(--light-purple),
        250px 350px var(--primary-purple),
        350px 100px var(--light-purple),
        450px 400px var(--primary-purple),
        550px 200px var(--light-purple),
        650px 300px var(--primary-purple),
        750px 150px var(--light-purple),
        850px 400px var(--primary-purple),
        950px 250px var(--light-purple),
        1050px 350px var(--primary-purple),
        1150px 150px var(--light-purple);
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Home Button */
.home-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.home-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(147, 51, 234, 0.5);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease;
}

.logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    animation: fadeInDown 0.6s ease, float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 15px rgba(147, 51, 234, 0.4));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 25px rgba(147, 51, 234, 0.6));
}

.title {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    animation: glow 2s ease-in-out infinite alternate;
}

.title i {
    -webkit-text-fill-color: var(--primary-purple);
}

@keyframes glow {
    0% { filter: drop-shadow(0 0 5px var(--primary-purple)); }
    100% { filter: drop-shadow(0 0 20px var(--light-purple)); }
}

.subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Card */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.3);
}

.card-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--light-purple);
}

.card-title i {
    margin-right: 10px;
}

.card-description {
    color: var(--text-gray);
    margin-bottom: 25px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Channels Section */
.channels {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.channel-btn-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.channel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: slideIn 0.6s ease;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.youtube-btn {
    background: linear-gradient(135deg, #ff0000, #c00);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    animation-delay: 0.2s;
}

.youtube-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.5);
}

.channel-btn i {
    font-size: 1.4rem;
}

/* Verification Badges */
.verify-badge,
.verified-badge {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    animation: fadeInUp 0.4s ease;
}

.verify-badge {
    background: rgba(147, 51, 234, 0.2);
    color: var(--light-purple);
    border: 1px solid var(--primary-purple);
}

.verify-badge.show {
    display: flex;
}

.verified-badge {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
    border: 1px solid var(--success);
}

.verified-badge.show {
    display: flex;
}

/* Buttons */
.btn {
    width: 100%;
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(147, 51, 234, 0.5);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-success {
    background: linear-gradient(135deg, var(--success), #059669);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
}

/* Instructions */
.instructions {
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid var(--primary-purple);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.instructions h3 {
    color: var(--light-purple);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.instructions ol {
    list-style-position: inside;
    color: var(--text-gray);
    line-height: 2;
}

.instructions li {
    margin-bottom: 8px;
}

.instructions li i {
    color: var(--primary-purple);
    margin-right: 8px;
}

.instructions a {
    color: var(--light-purple);
    text-decoration: none;
}

.instructions a:hover {
    text-decoration: underline;
}

/* Email Selector */
.email-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 2px solid var(--primary-purple);
    border-radius: 50%;
    color: var(--primary-purple);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: var(--primary-purple);
    color: var(--text-light);
    transform: scale(1.1);
}

.email-display {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.email-display label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.email-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-dark);
    border: 2px solid var(--primary-purple);
    border-radius: 10px;
    padding: 15px;
}

.email-box span {
    flex: 1;
    font-size: 1.1rem;
    color: var(--light-purple);
    font-weight: 500;
}

.copy-btn {
    background: var(--primary-purple);
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--dark-purple);
    transform: scale(1.05);
}

.email-indicator {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Loading */
.loading {
    text-align: center;
    padding: 30px;
    animation: fadeInUp 0.4s ease;
}

.loading i {
    font-size: 3rem;
    color: var(--primary-purple);
    margin-bottom: 15px;
}

.loading p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Result */
.result {
    animation: fadeInUp 0.6s ease;
}

.result-content {
    text-align: center;
    padding: 30px;
}

.result-content > i {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 20px;
    display: block;
}

.result-content h3 {
    color: var(--light-purple);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.code-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--bg-dark);
    border: 3px solid var(--success);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
}

.code-display span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--success);
    letter-spacing: 5px;
}

.result-message {
    color: var(--text-gray);
    font-size: 1rem;
    margin-top: 15px;
    line-height: 1.8;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.4);
    z-index: 2000;
    transition: transform 0.3s ease;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 20px;
    color: var(--text-gray);
    animation: fadeInUp 1s ease;
}

.footer p {
    margin-bottom: 8px;
}

.footer a {
    color: var(--light-purple);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--primary-purple);
    text-decoration: underline;
}

.footer i.fa-heart {
    color: #ff0000;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
}

.footer-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Hidden Class */
.hidden {
    display: none !important;
}

/* Membership Popup */
.membership-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    animation: fadeIn 0.4s ease;
    overflow-y: auto;
    padding: 20px;
}

.membership-overlay.hide {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.membership-popup {
    background: linear-gradient(135deg, var(--bg-card), #1a0a2e);
    border: 2px solid var(--primary-purple);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(147, 51, 234, 0.4);
    animation: popupSlideIn 0.5s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.close-popup, .close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(147, 51, 234, 0.2);
    border: 2px solid var(--primary-purple);
    border-radius: 50%;
    color: var(--light-purple);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.close-popup:hover, .close-modal:hover {
    background: var(--primary-purple);
    color: white;
    transform: rotate(90deg);
}

.back-modal {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 10px 20px;
    background: rgba(147, 51, 234, 0.2);
    border: 2px solid var(--primary-purple);
    border-radius: 25px;
    color: var(--light-purple);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.back-modal:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateX(-5px);
}

.back-modal i {
    transition: transform 0.3s ease;
}

.back-modal:hover i {
    transform: translateX(-3px);
}

.popup-header {
    text-align: center;
    padding: 30px 30px 20px;
    border-bottom: 1px solid var(--border);
}

.crown-icon {
    font-size: 3rem;
    animation: bounce 2s ease-in-out infinite;
}

.crown-icon i {
    color: #ffd700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.popup-header h2 {
    font-size: 2rem;
    margin: 15px 0 10px;
    background: linear-gradient(135deg, var(--light-purple), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.popup-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
}

.popup-content {
    padding: 30px;
}

.benefits-section h3,
.pricing-section h3 {
    color: var(--light-purple);
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 25px;
}

.benefits-list li {
    padding: 10px 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.benefits-list li i {
    color: var(--success);
    font-size: 1.1rem;
}

.tools-preview {
    margin-bottom: 25px;
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tool-badge {
    background: rgba(147, 51, 234, 0.2);
    border: 1px solid var(--primary-purple);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--light-purple);
    transition: all 0.3s ease;
}

.tool-badge.more-tools {
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    color: white;
    font-weight: 600;
    border: none;
}

.view-tools-btn {
    width: 100%;
    padding: 10px;
    background: rgba(147, 51, 234, 0.2);
    border: 1px solid var(--primary-purple);
    border-radius: 10px;
    color: var(--light-purple);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.view-tools-btn:hover {
    background: var(--primary-purple);
    color: white;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.price-card {
    background: rgba(147, 51, 234, 0.1);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.price-card:hover {
    border-color: var(--primary-purple);
    transform: translateY(-5px);
}

.price-card.popular {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700, #ff8800);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 10px;
    white-space: nowrap;
}

.plan-name {
    color: var(--light-purple);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.plan-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.plan-price span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.whatsapp-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    margin-bottom: 15px;
}

.whatsapp-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-cta i {
    font-size: 1.5rem;
}

.popup-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.popup-note i {
    color: var(--primary-purple);
}

/* Tools Modal */
.tools-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4000;
    animation: fadeIn 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.tools-modal-content {
    background: var(--bg-card);
    border: 2px solid var(--primary-purple);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    padding: 40px 30px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    animation: popupSlideIn 0.4s ease;
}

.tools-modal-content h2 {
    color: var(--light-purple);
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.tools-section {
    margin-bottom: 30px;
}

.tools-section h3 {
    color: var(--light-purple);
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tools-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tool-item {
    background: rgba(147, 51, 234, 0.2);
    border: 1px solid var(--primary-purple);
    padding: 8px 15px;
    border-radius: 8px;
    color: var(--light-purple);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tool-item:hover {
    background: var(--primary-purple);
    color: white;
    transform: scale(1.05);
}

/* Popup Responsive */
@media (max-width: 768px) {
    .membership-popup {
        max-height: 85vh;
    }

    .popup-header {
        padding: 20px 20px 15px;
    }

    .popup-header h2 {
        font-size: 1.5rem;
    }

    .crown-icon {
        font-size: 2.5rem;
    }

    .popup-content {
        padding: 20px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .price-card {
        padding: 12px;
    }

    .tools-modal-content {
        padding: 30px 20px;
        padding-top: 60px;
    }

    .tools-modal-content h2 {
        font-size: 1.5rem;
    }

    .back-modal {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .close-modal {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .popup-header h2 {
        font-size: 1.3rem;
    }

    .benefits-list li {
        font-size: 0.85rem;
    }

    .tool-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    .whatsapp-cta {
        font-size: 1rem;
        padding: 12px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .home-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
        top: 15px;
        right: 15px;
    }

    .logo {
        width: 100px;
    }

    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .card {
        padding: 20px;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .channel-btn {
        font-size: 1rem;
        padding: 12px 20px;
    }

    .email-selector {
        flex-direction: column;
    }

    .nav-btn {
        display: none;
    }

    .email-box {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .email-box span {
        font-size: 0.9rem;
    }

    .code-display {
        flex-direction: column;
    }

    .code-display span {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .instructions ol {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 80px;
    }

    .title {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .card {
        padding: 15px;
    }

    .channel-btn {
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    .btn {
        font-size: 1rem;
        padding: 12px 20px;
    }

    .code-display span {
        font-size: 1.5rem;
    }
}

