/* ==========================================================================
   Deevbet Landing Page - Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --color-primary: #124236;
    --color-primary-light: #156b55;
    --color-secondary: #edcd2a;
    --color-tertiary: #00a80e;
    --color-tertiary-hover: #008f0c;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--color-gray-800);
    background-color: #ffffff;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
}

/* ==========================================================================
   Preloader
   ========================================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--color-primary);
    border-right-color: var(--color-tertiary);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-primary);
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .header-container {
        padding: 0.85rem 2.5rem;
        width: 85%;
    }
}

.logo img {
    height: 38px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 1.75rem;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.05em;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
    color: var(--color-secondary);
}

.nav-btn-mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0.5rem;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .nav-btn-mobile {
        display: none;
    }
}

.nav-btn-mobile span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-btn-mobile.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-btn-mobile.active span:nth-child(2) {
    opacity: 0;
}

.nav-btn-mobile.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Dropdown */
.nav-mobile-wrapper {
    position: relative;
    width: 100%;
}

@media (min-width: 1024px) {
    .nav-mobile-wrapper {
        display: none;
    }
}

.nav-mobile {
    position: absolute;
    top: -250px;
    left: 0;
    width: 100%;
    background-color: var(--color-tertiary);
    visibility: hidden;
    opacity: 0;
    z-index: 90;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: top 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}

.nav-mobile.open {
    top: 0;
    visibility: visible;
    opacity: 1;
}

.nav-mobile-link {
    display: block;
    padding: 1rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease, padding-left 0.2s ease;
}

.nav-mobile-link:hover {
    background-color: var(--color-primary-light);
    padding-left: 2rem;
}

/* ==========================================================================
   Hero Swiper & Slides
   ========================================================================== */
swiper-container, .swiper-container {
    width: 100%;
    height: 100vh;
    min-height: 650px;
    display: block;
}

swiper-slide, .swiper-slide {
    width: 100%;
    height: 100vh;
    min-height: 650px;
    position: relative;
}

.hero-main {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 650px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #7aa52e;
    background: linear-gradient(135deg, #96c93d 1%, #00b09b 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-bg-sports {
    background-image: url("./assets/all-sports-banner.png");
}

.hero-bg-dice {
    background-image: url("./assets/dice.jpg");
}

.hero-bg-goats {
    background-image: url("./assets/goats.png");
}

@media (min-width: 1024px) {
    .hero-bg {
        background-attachment: fixed;
    }
}

.bg-gradient-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(-151deg, rgba(2, 123, 91, 0.85) 23%, rgba(4, 66, 50, 0.82) 111%);
}

.hero-curve {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    z-index: 20;
    pointer-events: none;
    user-select: none;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-content-wrapper {
        flex-direction: row;
        justify-content: space-between;
        padding: 5rem 2.5rem;
    }
}

.hero-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 2rem;
    text-align: left;
}

@media (min-width: 1024px) {
    .hero-text {
        width: 48%;
        margin-top: 0;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2rem;
    max-width: 540px;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.35rem;
    }
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.herobtn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.5rem;
    width: 180px;
    border-radius: 1rem;
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.herobtn:hover {
    background-color: var(--color-tertiary);
    border-color: var(--color-tertiary);
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 168, 14, 0.35);
}

.herobtn svg {
    flex-shrink: 0;
}

.herobtn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.herobtn-text small {
    font-size: 0.75rem;
    font-weight: 300;
    opacity: 0.9;
}

.hero-image-box {
    width: 100%;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-image-box {
        width: 48%;
        margin-top: 0;
    }
}

.hero-image-box img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.25));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Swiper pagination bullet styling */
.swiper-pagination-bullet {
    background-color: #BBF7D0 !important;
    opacity: 0.7 !important;
    width: 10px !important;
    height: 10px !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    background-color: var(--color-tertiary) !important;
    opacity: 1 !important;
    width: 28px !important;
    border-radius: 6px !important;
}

/* ==========================================================================
   Features Section (About Us)
   ========================================================================== */
.features-section {
    position: relative;
    padding: 5rem 1.5rem;
    background-image: url("./assets/download.jfif");
    background-repeat: repeat;
    background-color: #fafbfc;
}

@media (min-width: 768px) {
    .features-section {
        padding: 6rem 2.5rem;
    }
}

.features-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .features-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.feature-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.09);
}

.feature-icon-wrapper {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.icon-indigo {
    background-color: #e0e7ff;
    color: #4f46e5;
}

.icon-green {
    background-color: #dcfce7;
    color: var(--color-tertiary);
}

.icon-red {
    background-color: #fee2e2;
    color: #ef4444;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.title-indigo { color: #4f46e5; }
.title-green { color: var(--color-tertiary); }
.title-red { color: #ef4444; }

.feature-description {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-gray-500);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.95rem;
    font-weight: 600;
    transition: gap 0.2s ease, opacity 0.2s ease;
}

.link-indigo { color: #4f46e5; }
.link-indigo:hover { color: #4338ca; gap: 0.6rem; }

.link-green { color: var(--color-tertiary); }
.link-green:hover { color: var(--color-tertiary-hover); gap: 0.6rem; }

.link-red { color: #ef4444; }
.link-red:hover { color: #dc2626; gap: 0.6rem; }

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    position: relative;
    padding: 5rem 1.5rem;
    background-color: #f8fafc;
}

@media (min-width: 768px) {
    .contact-section {
        padding: 6rem 2.5rem;
    }
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-container {
        flex-direction: row;
        align-items: flex-start;
    }
}

.contact-info {
    width: 100%;
}

@media (min-width: 768px) {
    .contact-info {
        width: 48%;
    }
}

.contact-badge {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-700);
    margin-bottom: 0.5rem;
}

.contact-line {
    display: block;
    width: 4rem;
    height: 4px;
    background-color: var(--color-tertiary);
    border-radius: 2px;
    margin-bottom: 1.75rem;
}

.contact-headline {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-subtext {
    font-size: 1.05rem;
    color: var(--color-gray-700);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--color-gray-900);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.contact-item-value {
    font-size: 1.05rem;
    color: var(--color-gray-800);
    line-height: 1.6;
}

.contact-email-link {
    color: var(--color-tertiary);
    font-size: 1.05rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-email-link:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Contact Form */
.contact-form-box {
    width: 100%;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
    .contact-form-box {
        width: 52%;
    }
}

.form-intro {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gray-700);
    margin-bottom: 0.35rem;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--color-gray-300);
    background-color: #ffffff;
    color: var(--color-gray-800);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--color-tertiary);
    box-shadow: 0 0 0 3px rgba(0, 168, 14, 0.15);
}

.form-textarea {
    height: 120px;
    resize: vertical;
}

.form-submit-btn {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background-color: var(--color-primary);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.form-submit-btn:hover {
    background-color: var(--color-tertiary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 168, 14, 0.25);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 3.5rem 1.5rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-link {
    color: #f9fafb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
}

.social-link:hover {
    color: var(--color-secondary);
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-tertiary);
    transition: color 0.2s ease;
}

.footer-nav-link:hover {
    color: var(--color-secondary);
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-copyright .brand-highlight {
    color: var(--color-tertiary);
    font-weight: 600;
}

.footer-powered {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
}

.powered-link {
    color: var(--color-tertiary);
    font-weight: 600;
    transition: color 0.2s ease;
}

.powered-link:hover {
    color: var(--color-secondary);
}

/* ==========================================================================
   Download Page Styles
   ========================================================================== */
.download-hero {
    position: relative;
    padding: 9rem 1.5rem 5rem 1.5rem;
    background: linear-gradient(135deg, #124236 0%, #156b55 50%, #0c3027 100%);
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .download-hero {
        padding: 10rem 2.5rem 6rem 2.5rem;
    }
}

.download-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.download-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background-color: rgba(237, 205, 42, 0.15);
    border: 1px solid rgba(237, 205, 42, 0.4);
    border-radius: 9999px;
    color: var(--color-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.download-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .download-title {
        font-size: 3.5rem;
    }
}

.download-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Download Section */
.download-section {
    padding: 4rem 1.5rem 6rem 1.5rem;
    background-color: #f8fafc;
    position: relative;
}

@media (min-width: 768px) {
    .download-section {
        padding: 5rem 2.5rem 7rem 2.5rem;
    }
}

.download-grid {
    max-width: 1000px;
    margin: -3rem auto 4rem auto;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .download-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

.software-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.software-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.software-card-featured {
    border: 2px solid var(--color-tertiary);
}

.featured-ribbon {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--color-tertiary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.software-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.software-icon {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    background: linear-gradient(135deg, #124236 0%, #156b55 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(18, 66, 54, 0.25);
}

.software-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-gray-900);
}

.software-version {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-tertiary);
}

.software-desc {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.software-meta {
    background-color: var(--color-gray-50);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

.meta-label {
    color: var(--color-gray-500);
}

.meta-value {
    color: var(--color-gray-800);
    font-weight: 600;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: var(--color-primary);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 0.75rem;
    box-shadow: 0 8px 20px rgba(18, 66, 54, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.download-btn:hover {
    background-color: var(--color-tertiary);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 168, 14, 0.3);
}

.download-btn-secondary {
    background-color: var(--color-primary-light);
}

/* System Requirements & Steps */
.instructions-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .instructions-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.instruction-box {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.instruction-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.instruction-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.instruction-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.5;
}

.instruction-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.instruction-icon {
    color: var(--color-tertiary);
    flex-shrink: 0;
    margin-top: 2px;
}

