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

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes progressFill {
    from { width: 0; }
}

body {
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
}

/* Área com menu lateral */
.area-com-menu {
    display: flex;
    min-height: 100vh;
}
.area-com-menu .page-container {
    flex: 1;
    max-width: 100%;
}

/* Menu lateral */
.menu-lateral {
    width: 240px;
    flex-shrink: 0;
    background: #fff;
    border-right: 1px solid #e0e0e0;
    padding: 20px 0;
    box-shadow: 2px 0 8px rgba(0,0,0,0.04);
}
.menu-lateral-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 16px;
    border-bottom: 1px solid #eee;
    margin-bottom: 12px;
}
.menu-lateral-title {
    font-weight: 700;
    font-size: 16px;
    color: #333;
}
.menu-lateral-fechar {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    line-height: 1;
}
.menu-lateral-lista {
    list-style: none;
}
.menu-lateral-lista li {
    margin: 0;
}
.menu-lateral-lista a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: background 0.2s, color 0.2s;
}
.menu-lateral-lista a:hover {
    background: #f0f7ff;
    color: #3483fa;
}
.menu-lateral-lista a.active {
    background: #3483fa;
    color: #fff;
    border-right: 3px solid #2968c8;
}
.menu-lateral-lista a.menu-sair {
    color: #c00;
}
.menu-lateral-lista a.menu-sair:hover {
    background: #ffebee;
    color: #b71c1c;
}
.menu-lateral-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 98;
}
.btn-abrir-menu {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px 12px;
    color: #333;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .menu-lateral {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 99;
        width: 260px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    body.menu-aberto .menu-lateral {
        transform: translateX(0);
    }
    .menu-lateral-fechar {
        display: block;
    }
    .menu-lateral-overlay {
        display: block;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
    }
    body.menu-aberto .menu-lateral-overlay {
        opacity: 1;
        pointer-events: auto;
    }
}

.page-container {
    max-width: 480px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.top-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.top-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    padding: 24px;
    animation: fadeIn 0.5s ease-out;
}

.logo-section {
    text-align: center;
    margin-bottom: 40px;
}

.logo-section h1 {
    font-size: 32px;
    color: #3483fa;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.tagline {
    color: #666;
    font-size: 14px;
}

.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
    width: 100%;
}

.btn {
    padding: 16px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    display: block;
    box-sizing: border-box;
}

.btn-primary {
    background: #3483fa;
    color: white;
}

.btn-primary:hover {
    background: #2968c8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 131, 250, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: white;
    color: #3483fa;
    border: 2px solid #3483fa;
}

.btn-secondary:hover {
    background: #f0f7ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 131, 250, 0.2);
}

.btn-secondary:active {
    transform: translateY(0);
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.feature-item {
    text-align: center;
    padding: 16px 8px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s;
    animation: fadeIn 0.6s ease-out backwards;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #3483fa 0%, #2968c8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1);
}

.feature-item:nth-child(1) .feature-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z'/%3E%3C/svg%3E");
}

.feature-item:nth-child(2) .feature-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z'/%3E%3C/svg%3E");
}

.feature-item:nth-child(3) .feature-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53C16.17 17.98 14.21 19 12 19z'/%3E%3C/svg%3E");
}

.feature-item p {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.form-header {
    margin-bottom: 24px;
}

.form-header h2 {
    color: #333;
    font-size: 24px;
    margin-top: 8px;
}

.back-btn {
    color: #3483fa;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 8px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-group input {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #3483fa;
    box-shadow: 0 0 0 3px rgba(52, 131, 250, 0.1);
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 14px;
}

.form-footer a {
    color: #3483fa;
    text-decoration: none;
    font-weight: 600;
}

.header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.header-bar h2 {
    font-size: 20px;
    color: #333;
}

.logout-btn {
    color: #3483fa;
    text-decoration: none;
    font-size: 14px;
}

.welcome-card {
    background: linear-gradient(135deg, #3483fa 0%, #2968c8 100%);
    padding: 24px;
    border-radius: 12px;
    color: white;
    margin-bottom: 24px;
    box-shadow: 0 8px 16px rgba(52, 131, 250, 0.2);
    position: relative;
    overflow: hidden;
}

.welcome-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.welcome-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.welcome-card p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.welcome-card .btn {
    background: white;
    color: #3483fa;
    position: relative;
    z-index: 1;
}

.welcome-card .btn:hover {
    background: #f0f7ff;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat-card {
    background: white;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    animation: fadeIn 0.5s ease-out backwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3483fa 0%, #2968c8 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.stat-icon::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1);
}

.stat-card:nth-child(1) .stat-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M16 6l2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6z'/%3E%3C/svg%3E");
}

.stat-card:nth-child(2) .stat-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z'/%3E%3C/svg%3E");
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #3483fa;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    margin-bottom: 24px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3483fa 0%, #2968c8 100%);
    width: 50%;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: progressFill 0.8s ease-out;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.question-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fadeIn 0.5s ease-out;
}

.question-card h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.hidden {
    display: none;
}

.user-goals {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    border-left: 4px solid #3483fa;
    box-shadow: 0 2px 8px rgba(52, 131, 250, 0.1);
}

.user-goals p {
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.user-goals p:last-child {
    margin-bottom: 0;
}

.plans-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan-card {
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    background: white;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    animation: fadeIn 0.5s ease-out backwards;
}

.plans-container .plan-card:nth-child(1) { animation-delay: 0.1s; }
.plans-container .plan-card:nth-child(2) { animation-delay: 0.2s; }

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.plan-card.featured {
    border-color: #3483fa;
    background: linear-gradient(180deg, #f0f7ff 0%, white 100%);
    box-shadow: 0 4px 16px rgba(52, 131, 250, 0.15);
}

.plan-card.featured:hover {
    box-shadow: 0 12px 32px rgba(52, 131, 250, 0.25);
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #333;
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.plan-badge.premium {
    background: #3483fa;
}

.plan-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #333;
}

.plan-price {
    margin-bottom: 20px;
}

.plan-price .currency {
    font-size: 18px;
    color: #666;
}

.plan-price .amount {
    font-size: 36px;
    font-weight: 700;
    color: #3483fa;
}

.plan-features {
    list-style: none;
    margin-bottom: 20px;
}

.plan-features li {
    padding: 10px 0;
    color: #333;
    font-size: 14px;
    position: relative;
    padding-left: 28px;
}

.plan-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #00a650 0%, #008a42 100%);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}

.payment-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.payment-header {
    background: #f0f7ff;
    padding: 20px;
    text-align: center;
}

.payment-header h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
}

.payment-amount {
    font-size: 32px;
    font-weight: 700;
    color: #3483fa;
}

.qr-code-container {
    padding: 32px;
    text-align: center;
    background: white;
}

.qr-code {
    width: 240px;
    height: 240px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
}

.pix-key {
    padding: 20px;
}

.pix-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
}

.pix-key-box {
    display: flex;
    gap: 8px;
}

.pix-key-box input {
    flex: 1;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 12px;
    font-family: monospace;
}

.copy-btn {
    padding: 12px 16px;
    background: #3483fa;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
    position: relative;
}

.copy-btn::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.copy-btn:hover {
    background: #2968c8;
    transform: scale(1.05);
}

.copy-btn:active {
    transform: scale(0.95);
}

.payment-info {
    padding: 0 20px 20px;
    text-align: center;
}

.payment-info p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
}

.info-text {
    font-size: 12px;
    color: #999;
}

.success-container {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00a650 0%, #008a42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(0, 166, 80, 0.3);
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.success-icon::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.success-container h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 8px;
}

.success-container > p {
    color: #666;
    margin-bottom: 32px;
}

.investment-summary {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    text-align: left;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.investment-summary h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 16px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item span {
    color: #666;
    font-size: 14px;
}

.summary-item strong {
    color: #333;
    font-size: 14px;
}

.highlight {
    color: #00a650 !important;
    font-size: 16px !important;
}

.next-steps {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    text-align: left;
    border-left: 4px solid #3483fa;
}

.next-steps h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
    padding: 8px 0;
    color: #666;
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}

.next-steps li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233483fa'%3E%3Cpath d='M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.video-intro-container {
    width: 100%;
    height: 100vh;
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-overlay {
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.video-overlay h1 {
    color: white;
    font-size: 42px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    letter-spacing: -1px;
}

.play-video-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.9);
    color: #3483fa;
    border: none;
    border-radius: 24px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, background 0.2s;
}
.play-video-btn:hover {
    background: white;
    transform: scale(1.05);
}

.skip-container {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.skip-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.skip-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.skip-btn:active {
    transform: translateY(0);
}