/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

/* Colors - Masculine Power Palette */
:root {
    --primary: #c8102e; /* Strong red - power, dominance */
    --primary-dark: #8c0b20;
    --secondary: #1a1a1a; /* Dark gray - strength, stability */
    --accent: #d4af37; /* Gold - success, achievement */
    --dark: #0a0a0a;
    --light: #ffffff;
    --danger: #c8102e;
    --success: #006400; /* Dark green - wealth, status */
    --warning: #d4af37;
    --info: #0077cc;
    --gray: #333333;
    --light-gray: #555555;
}

/* Layout */
.quiz-wrapper {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
    position: relative;
    z-index: 10;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: var(--dark);
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    opacity: 0.1;
    filter: blur(40px);
    animation: float 15s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -250px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    right: -100px;
    animation-delay: 3s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    bottom: 30%;
    left: 20%;
    animation-delay: 6s;
}

.shape-4 {
    width: 200px;
    height: 200px;
    top: 30%;
    right: 20%;
    animation-delay: 9s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(100px, 100px) rotate(180deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Screen Management */
.screen {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.screen.active {
    display: block;
    opacity: 1;
}

/* Logo */
.quiz-logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo-container {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    border-radius: 50%;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.logo-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 2rem;
}

/* Quiz Header */
.quiz-header {
    text-align: center;
    margin-bottom: 30px;
}

.quiz-header h1 {
    color: var(--light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Social Proof */
.social-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    padding: 15px;
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 8px;
}

.people-count, .rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.people-count i, .rating i {
    color: var(--accent);
}

.stars {
    display: flex;
    gap: 2px;
}

/* Intro Message */
.intro-message {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary);
}

.intro-message p:first-child {
    font-weight: 600;
}

.benefits-list {
    list-style: none;
    margin-top: 15px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.benefits-list i {
    color: var(--primary);
    margin-top: 4px;
}

/* Persona Selector */
.persona-selector {
    margin-bottom: 30px;
}

.persona-selector h3 {
    text-align: center;
    margin-bottom: 20px;
}

.persona-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.persona-option {
    background-color: rgba(26, 26, 26, 0.7);
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 20px;
    width: 180px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.persona-option:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.persona-option.selected {
    border-color: var(--primary);
    background-color: rgba(200, 16, 46, 0.1);
}

.persona-icon {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--light);
    font-size: 1.5rem;
}

.persona-option h4 {
    margin-bottom: 5px;
}

.persona-option p {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-bottom: 0;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    text-align: center;
    width: 100%;
}

.primary-button {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    color: var(--light);
    box-shadow: 0 5px 15px rgba(200, 16, 46, 0.3);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(200, 16, 46, 0.4);
}

.primary-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(200, 16, 46, 0.3);
}

.secondary-button {
    background-color: transparent;
    color: var(--light);
    border: 2px solid var(--light-gray);
}

.secondary-button:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Privacy Note */
.privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--light-gray);
}

.privacy-note i {
    color: var(--accent);
}

/* Progress Bar */
.progress-container {
    margin-bottom: 30px;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.progress-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.progress-percentage {
    color: var(--primary);
    font-weight: 700;
}

.progress-bar {
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    width: 0;
    transition: width 0.5s ease;
}

/* Question Styles */
.question-wrapper {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    min-height: 300px;
}

.question-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.options-list {
    list-style: none;
}

.option-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-item:hover {
    border-color: var(--primary);
    background-color: rgba(200, 16, 46, 0.1);
}

.option-item.selected {
    border-color: var(--primary);
    background-color: rgba(200, 16, 46, 0.1);
}

.question-counter {
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--light-gray);
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Processing Screen */
.processing-screen h2 {
    text-align: center;
    margin-bottom: 10px;
}

.processing-subtitle {
    text-align: center;
    color: var(--light-gray);
    margin-bottom: 30px;
}

.processing-steps {
    margin-bottom: 30px;
}

.processing-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.processing-step.active {
    opacity: 1;
}

.step-icon {
    background-color: rgba(26, 26, 26, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 5px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-bottom: 0;
}

.loading-container {
    margin-bottom: 30px;
}

.loading-bar {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.loading-fill {
    height: 100%;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    width: 0;
    transition: width 0.5s ease;
}

.loading-percentage {
    text-align: center;
    font-weight: 700;
    color: var(--primary);
}

.processing-facts {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    font-style: italic;
}

/* Results Screen */
.result-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary);
    color: var(--light);
    padding: 10px 20px;
    border-radius: 30px;
    margin: 0 auto 30px;
    width: fit-content;
}

.result-badge i {
    font-size: 1.2rem;
}

.result-badge h3 {
    margin-bottom: 0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-type-container {
    text-align: center;
    margin-bottom: 30px;
}

.result-type {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-size: 2.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.result-description {
    max-width: 700px;
    margin: 0 auto;
}

.result-stats {
    margin-bottom: 30px;
}

.stat-container {
    margin-bottom: 20px;
}

.stat-container h4 {
    margin-bottom: 10px;
}

.stat-bar {
    height: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.stat-fill {
    height: 100%;
    transition: width 1s ease;
}

.stat-fill.danger {
    background: linear-gradient(45deg, var(--danger), #ff4d4d);
}

.stat-fill.success {
    background: linear-gradient(45deg, var(--success), #00a000);
}

.stat-value {
    text-align: right;
    font-weight: 700;
    font-size: 1.2rem;
}

.stat-value.danger {
    color: var(--danger);
}

.stat-value.success {
    color: var(--success);
}

.result-comparison {
    margin-bottom: 30px;
}

.result-comparison h3 {
    text-align: center;
    margin-bottom: 20px;
}

.comparison-chart {
    text-align: center;
}

.comparison-chart img {
    max-width: 100%;
    height: auto;
}

.solution-box {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.solution-icon {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.5rem;
}

.solution-highlight {
    background-color: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--accent);
    padding: 15px;
    margin-top: 20px;
    font-style: italic;
}

.solution-highlight p {
    margin-bottom: 0;
}

/* Product Offer */
.product-offer {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    color: var(--light);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(200, 16, 46, 0.3);
}

.product-offer h2 {
    text-align: center;
    color: var(--accent);
    margin-top: 15px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-offer h3 {
    text-align: center;
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 30px;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.product-image {
    flex: 0 0 40%;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.product-info {
    flex: 1;
}

.product-description {
    margin-bottom: 20px;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--light-gray);
}

.meta-item i {
    color: var(--accent);
}

/* Bonus Section */
.bonus-section {
    margin-bottom: 30px;
}

.bonus-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.bonus-icon {
    background: linear-gradient(45deg, var(--accent), #f5d76e);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.2rem;
}

.bonus-list {
    list-style: none;
}

.bonus-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.bonus-badge {
    background: linear-gradient(45deg, var(--accent), #f5d76e);
    color: var(--dark);
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    white-space: nowrap;
}

.bonus-content {
    flex: 1;
}

.bonus-content strong {
    display: block;
    margin-bottom: 5px;
}

.bonus-content p {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-bottom: 0;
}

.bonus-value {
    color: var(--accent);
    font-weight: 700;
    white-space: nowrap;
}

/* Total Value */
.total-value {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.value-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.value-item:last-child {
    border-bottom: none;
}

.value-item.highlight {
    background-color: rgba(200, 16, 46, 0.1);
    margin: 10px -20px -20px;
    padding: 15px 20px;
    border-radius: 0 0 8px 8px;
}

.total-original {
    text-decoration: line-through;
    color: var(--light-gray);
}

.total-current {
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Urgency Timer */
.urgency-timer {
    text-align: center;
    margin-bottom: 30px;
}

.urgency-timer h4 {
    margin-bottom: 15px;
    color: var(--light);
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.countdown-item {
    background-color: rgba(200, 16, 46, 0.1);
    border: 2px solid var(--primary);
    border-radius: 8px;
    padding: 10px;
    min-width: 80px;
}

.countdown-item span {
    display: block;
    text-align: center;
}

.countdown-item span:first-child {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.countdown-label {
    font-size: 0.8rem;
    color: var(--light-gray);
    text-transform: uppercase;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

/* Buy Button */
.buy-button-final {
    display: block;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    color: var(--light);
    text-decoration: none;
    padding: 20px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(200, 16, 46, 0.3);
    transition: all 0.3s ease;
}

.buy-button-final:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(200, 16, 46, 0.4);
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Payment Options */
.payment-options {
    text-align: center;
    margin-bottom: 30px;
}

.payment-options p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--light-gray);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 1.5rem;
    color: var(--light-gray);
}

/* Guarantee */
.guarantee {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.guarantee-icon {
    background: linear-gradient(45deg, var(--accent), #f5d76e);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.guarantee-content h4 {
    margin-bottom: 5px;
}

.guarantee-content p {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-bottom: 0;
}

/* Testimonials */
.testimonials {
    margin-bottom: 30px;
}

.testimonials h3 {
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-slider {
    position: relative;
    margin-bottom: 20px;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.testimonial {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 8px;
    padding: 20px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    margin-bottom: 0;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-bottom: 5px;
}

.testimonial-rating {
    color: var(--accent);
    font-size: 0.9rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-prev, .testimonial-next {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-prev:hover, .testimonial-next:hover {
    background-color: var(--primary);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary);
}

/* FAQ Section */
.faq-section {
    margin-bottom: 30px;
}

.faq-section h3 {
    text-align: center;
    margin-bottom: 20px;
}

.faq-item {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
}

.faq-question h4 {
    margin-bottom: 0;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 15px;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* Final Note */
.final-note {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 8px;
    padding: 20px;
    font-style: italic;
    text-align: center;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 15px;
    }
    
    .persona-options {
        gap: 15px;
    }
    
    .persona-option {
        width: 160px;
        padding: 15px;
    }
    
    .product-header {
        flex-direction: column;
    }
    
    .product-image {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .navigation-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .secondary-button {
        order: 2;
    }
    
    .guarantee {
        flex-direction: column;
        text-align: center;
    }
    
    .bonus-list li {
        flex-direction: column;
        text-align: center;
    }
    
    .bonus-badge, .bonus-value {
        margin: 5px 0;
    }
}

@media (max-width: 480px) {
    .quiz-container {
        padding: 20px 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .persona-options {
        flex-direction: column;
        align-items: center;
    }
    
    .persona-option {
        width: 100%;
        max-width: 280px;
    }
    
    .countdown {
        gap: 5px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 8px;
    }
    
    .countdown-item span:first-child {
        font-size: 1.5rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
    }
    
    .result-type {
        font-size: 1.8rem;
    }
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.buy-button-final {
    animation: pulse 2s infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}