:root {
    /* Brand Colors */
    --primary: #3361F1;
    --primary-dark: #254EDB;
    --secondary: #592AD6;

    /* Hot/Action Colors */
    --action-start: #F17E11;
    --action-end: #EF3300;

    /* Backgrounds - Deep Blueish Black */
    --bg-dark: #050914;
    --bg-card: rgba(20, 25, 45, 0.7);
    --bg-input: rgba(10, 15, 30, 0.6);

    /* Text */
    --text-main: #ffffff;
    --text-muted: #94a3b8;

    /* Borders & Glass */
    --border: rgba(51, 97, 241, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);

    /* Gradients */
    --gradient: linear-gradient(to right, #3361F1, #592AD6);
    /* Blue -> Purple */
    --gradient-hot: linear-gradient(to right, #F17E11, #EF3300);
    /* Orange -> Red */
}

html[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

/* Lang Toggle */
.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(circle at 15% 25%, rgba(51, 97, 241, 0.15) 0%, transparent 45%),
        /* Blue glow */
        radial-gradient(circle at 85% 75%, rgba(89, 42, 214, 0.15) 0%, transparent 45%);
    /* Purple glow */
    background-attachment: fixed;
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    overflow-x: hidden;
    /* Prevent scroll on entrance */
}

/* Animations Hub */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 5px rgba(51, 97, 241, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(51, 97, 241, 0.6);
    }

    100% {
        box-shadow: 0 0 5px rgba(51, 97, 241, 0.2);
    }
}

.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeIn 1s ease-out;
}

/* Staggered Children for common elements */
header {
    text-align: center;
    animation: slideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

main {
    animation: slideUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s backwards;
}

.result-card,
.content-card,
.event-card,
.calendar-container {
    animation: scaleIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.logo-icon-bg {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-icon-bg:hover {
    transform: rotate(10deg) scale(1.1);
}

/* Button & Link Hover Mechanics */
a,
button,
.input-wrapper-v2,
.event-card,
.info-widget {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

button:active,
a:active {
    transform: scale(0.96);
}

/* Header */
/* header styles continue below */

.logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.logo-icon-bg {
    width: 350px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.logo-text h1 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    background: rgba(51, 97, 241, 0.15);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    color: #4da3ff;
    font-weight: 700;
    vertical-align: middle;
}

p.subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Social Buttons */
.social-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-btn {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border: var(--glass-border);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none !important;
}

.social-btn:hover {
    transform: translateY(-4px) scale(1.1);
    color: white;
}

.social-btn.fb:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-btn.tg-channel:hover {
    background: #229ED9;
    border-color: #229ED9;
}

.social-btn.tg-bot:hover {
    background: #2AABEE;
    border-color: #2AABEE;
}

/* Search Box */
.search-box {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.5rem;
    border-radius: 1rem;
    display: flex;
    gap: 0.5rem;
    box-shadow: var(--glass-shadow);
    border: var(--glass-border);
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
    width: 20px;
    height: 20px;
}

input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1rem 3rem 1rem 3rem;
    /* Added right padding for paste button */
    color: white;
    font-size: 1rem;
    outline: none;
}

input::placeholder {
    color: var(--text-muted);
}

.btn-paste {
    position: absolute;
    right: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-paste:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

button.btn-generate {
    background: var(--gradient);
    border: none;
    color: white;
    padding: 0 1.5rem;
    border-radius: 0.8rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: filter 0.2s;
}

button.btn-generate:hover {
    filter: brightness(1.1);
}

/* Result Card */
.result-card {
    display: none;
    /* Hidden by default */
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    overflow: hidden;
    border: var(--glass-border);
    margin-bottom: 2rem;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.result-card.active {
    display: block;
}

.product-header {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
}

.image-wrapper {
    width: 100%;
    background: white;
    border-radius: 1rem;
    text-align: center;
    margin-bottom: 1rem;
}

img#product-img {
    max-width: 100%;
    object-fit: contain;
    border-radius: 1rem;
}

.product-info-compact {
    padding: 0 0.5rem;
}

.price-tag {
    display: inline-block;
    background: #fff;
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.result-card h2 {
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Direct Product Link Button */
.direct-link-container {
    margin-top: 1rem;
}

.direct-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 0.8rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(51, 97, 241, 0.3);
}

.direct-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(51, 97, 241, 0.4);
    filter: brightness(1.1);
}

.direct-link-btn i {
    font-size: 1rem;
}


.offers-section {
    padding: 1.5rem;
}

.offers-section h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Links List */
.links-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.offer-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1rem;
    transition: all 0.2s;
}

.offer-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.offer-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
    font-weight: 600;
}

.offer-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    /* Handle small screens */
}

.url-input {
    flex: 1;
    min-width: 0;
    /* Fix flex overflow */
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 0.6rem 0.8rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-family: 'Courier New', monospace;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.url-input:focus {
    color: var(--text-main);
    border-color: #3361F1;
    outline: none;
}

.btn-mini {
    padding: 0 1rem;
    height: 38px;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-open {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-open:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-copy-mini {
    background: var(--gradient);
    color: white;
    border: none;
}

.btn-copy-mini:hover {
    opacity: 0.9;
}



/* Contact Form */
.contact-section {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: var(--glass-border);
    margin-bottom: 2rem;
}

.contact-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border);
    padding: 0.8rem 1rem;
    border-radius: 0.5rem;
    color: white;
    font-size: 0.95rem;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #3361F1;
    outline: none;
}

.btn-contact {
    width: 100%;
    background: var(--text-main);
    color: var(--bg-dark);
    font-weight: 700;
    padding: 0.8rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-contact:hover {
    opacity: 0.9;
}

/* Footer */
footer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding-bottom: 1rem;
}

.footer-links {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.separator {
    margin: 0 0.5rem;
    opacity: 0.5;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loading-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.loader-content {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-left-color: #F17E11;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

.loader-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.loader-content p {
    color: var(--text-muted);
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Optimizations */
@media (max-width: 600px) {
    body {
        padding: 1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    .social-btn {
        width: 54px;
        height: 54px;
        /* Larger tap targets */
    }
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: rgba(34, 197, 94, 0.1);
    /* Green tint */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 1rem;
    padding: 1rem;
    color: white;
    z-index: 200;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 350px;
}

.toast.show {
    transform: translateX(0);
}

.toast-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.toast-icon {
    background: #22c55e;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.toast-message h4 {
    margin: 0;
    font-size: 1rem;
    color: #22c55e;
}

.toast-message p {
    margin: 0.2rem 0 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.toast-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    margin-left: auto;
}

/* Ali Button */
.social-btn.ali:hover {
    background: #EF3300;
    border-color: #EF3300;
}

.ali-icon {
    font-size: 1.2rem;
}

/* Contact Form Tweaks */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .toast {
        left: 1rem;
        right: 1rem;
        top: 1rem;
        max-width: none;
        transform: translateY(-150%);
        /* Start from above */
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .toast.show {
        transform: translateY(0);
        /* Drop down */
    }
}

.captcha-group {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.captcha-group label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.captcha-group strong {
    color: var(--primary);
    font-size: 1.1rem;
    margin-left: 0.5rem;
}

/* --- V2 Design Updates (Mobile Friendly) --- */

/* 1. New Vertical Search Box */
.search-box-v2 {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1rem;
    border-radius: 1.5rem;
    box-shadow: var(--glass-shadow);
    border: var(--glass-border);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-group-v2 {
    width: 100%;
}

.input-wrapper-v2 {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg-input);
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: border 0.3s;
}

.input-wrapper-v2:focus-within {
    border-color: #3361F1;
}

.input-icon-v2 {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
    width: 20px;
    height: 20px;
    pointer-events: none;
}

html[dir="rtl"] .input-icon-v2 {
    left: auto;
    right: 1rem;
}

.url-input-v2 {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.2rem 3.5rem 1.2rem 3rem;
    /* Left space for icon, right for paste btn */
    color: white;
    font-size: 1rem;
    outline: none;
}

html[dir="rtl"] .url-input-v2 {
    padding: 1.2rem 3rem 1.2rem 3.5rem;
}

.btn-paste-v2 {
    position: absolute;
    right: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: var(--text-muted);
    width: 40px;
    height: 40px;
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

html[dir="rtl"] .btn-paste-v2 {
    right: auto;
    left: 0.5rem;
}

.btn-paste-v2:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.btn-generate-v2 {
    width: 100%;
    background: var(--gradient-hot);
    border: none;
    color: white;
    padding: 1rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: transform 0.2s, filter 0.2s;
    box-shadow: 0 4px 20px rgba(241, 126, 17, 0.4);
}

.btn-generate-v2:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn-generate-v2:active {
    transform: translateY(0);
}

/* 2. New Result Offer Cards */
.offer-card-v2 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.2rem;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: background 0.2s;
}

.offer-card-v2:hover {
    background: rgba(255, 255, 255, 0.05);
}

.offer-header-v2 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-main);
}

.offer-icon {
    font-size: 1.5rem;
}

.offer-label {
    font-weight: 600;
    font-size: 1.1rem;
}

.offer-input-row {
    width: 100%;
}

.url-input-v2-result {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 1rem;
    border-radius: 0.8rem;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.url-input-v2-result:focus {
    color: var(--text-main);
    border-color: var(--primary);
    outline: none;
}

.offer-actions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.action-btn {
    border: none;
    padding: 0.8rem;
    border-radius: 0.8rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-copy-v2 {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(51, 97, 241, 0.25);
}

.btn-copy-v2:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-copy-v2.copied {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    box-shadow: none;
}

.btn-open-v2 {
    background: var(--gradient-hot);
    color: white;
    box-shadow: 0 4px 12px rgba(241, 126, 17, 0.25);
}

.btn-open-v2:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* Extra Info & Buttons */
.price-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.extra-prices {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.price-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.2rem 0.5rem;
    font-size: 0.85rem;
    color: var(--text-main);
}

.store-info {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.action-btn i {
    font-size: 1.1rem;
}

@media (max-width: 600px) {
    .quick-links-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* Widgets */
.info-widget {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.info-widget h3 {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.steps-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.step-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.step-arrow {
    color: rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
}

/* Featured Event Mini */
.event-widget-mini {
    background: linear-gradient(135deg, rgba(20, 25, 45, 0.8), rgba(51, 97, 241, 0.1));
    border: 1px solid rgba(51, 97, 241, 0.2);
    border-radius: 1.5rem;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.event-widget-mini:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(51, 97, 241, 0.15);
}

.event-mini-content {
    flex: 1;
    z-index: 2;
    padding-right: 1rem;
}

.badge-hot {
    background: #C62800;
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.event-mini-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: white;
}

.event-mini-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.btn-mini-arrow {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.event-mini-img {
    width: 100px;
    height: 100px;
    border-radius: 1rem;
    overflow: hidden;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.event-mini-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .step-arrow {
        display: none;
    }

    .steps-grid {
        gap: 2rem;
    }

    .event-widget-mini {
        flex-direction: column-reverse;
        text-align: center;
    }

    .event-mini-content {
        padding-right: 0;
        padding-top: 1rem;
    }

    .event-mini-img {
        width: 100%;
        height: 150px;
    }
}

.event-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gradient);
    color: white;
    padding: 10px;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(51, 97, 241, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.event-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(51, 97, 241, 0.5);
    filter: brightness(1.1);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}