/* ========================================
   QC Service - Huawei Remote Service Website
   Professional & Spectacular Design
   ======================================== */

/* CSS Variables */
:root {
    --primary: #c7000b;
    --primary-dark: #a00008;
    --primary-light: #ff1a25;
    --secondary: #1a1a1a;
    --accent: #00d26a;
    --dark: #0a0a0a;
    --dark-light: #1a1a1a;
    --gray: #888;
    --gray-light: #f5f5f5;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #c7000b 0%, #ff4d4d 50%, #c7000b 100%);
    --gradient-text: linear-gradient(90deg, #c7000b, #ff6b6b, #c7000b);
    --shadow: 0 10px 40px rgba(199, 0, 11, 0.2);
    --shadow-lg: 0 25px 80px rgba(199, 0, 11, 0.3);
    cursor: none;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-icon {
    font-size: 4rem;
    animation: pulse-loader 1s ease-in-out infinite;
}

@keyframes pulse-loader {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.loader-text {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 20px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-top: 20px;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--gradient);
    border-radius: 10px;
    animation: loading 1.5s ease-in-out forwards;
}

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Particle Canvas */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Custom Cursor - Premium Design */
.cursor-wrapper {
    pointer-events: none;
    z-index: 99999;
}

.cursor-core {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 10px var(--primary),
        0 0 20px var(--primary),
        0 0 30px rgba(199, 0, 11, 0.5);
    transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease, background 0.2s ease;
}

.cursor-core.hover {
    width: 12px;
    height: 12px;
    background: var(--primary);
    box-shadow: 
        0 0 15px var(--primary),
        0 0 30px var(--primary),
        0 0 45px rgba(199, 0, 11, 0.8);
}

.cursor-core.click {
    transform: translate(-50%, -50%) scale(0.8);
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(199, 0, 11, 0.6);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                height 0.3s cubic-bezier(0.25, 1, 0.5, 1),
                border-color 0.3s ease,
                background 0.3s ease;
}

.cursor-ring.hover {
    width: 70px;
    height: 70px;
    border-color: var(--primary);
    background: rgba(199, 0, 11, 0.08);
    border-width: 2px;
}

.cursor-ring.click {
    width: 35px;
    height: 35px;
}

.cursor-glow {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(199, 0, 11, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99996;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursor-glow.active {
    opacity: 1;
}

.cursor-trail {
    position: fixed;
    pointer-events: none;
    z-index: 99995;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stats Plus Sign */
.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    display: inline;
}

.stat-plus {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-left: 2px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.25rem;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--primary);
}

/* Marquee Ticker */
.marquee-container {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    padding: 12px 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 100%);
}

.marquee-content {
    display: flex;
    gap: 50px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.1rem;
}

.btn-icon {
    font-size: 1.2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-icon {
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    padding: 12px 24px;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-nav:hover {
    transform: scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(199, 0, 11, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(199, 0, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(199, 0, 11, 0.2);
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero h1 {
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-plus {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    width: 100%;
    text-align: left;
}

/* Phone Mockup */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5),
                inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.screen-content {
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 50px;
    left: -30px;
    animation-delay: 0s;
}

.card-2 {
    top: 200px;
    right: -20px;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 100px;
    left: 0;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card-icon {
    font-size: 1.3rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--dark-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(199, 0, 11, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-top: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--dark);
    padding: 40px 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    background: linear-gradient(145deg, rgba(199, 0, 11, 0.1), var(--dark));
    border-color: var(--primary);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-tag.new {
    background: rgba(0, 210, 106, 0.2);
    color: var(--accent);
}

.service-tag.hot {
    background: rgba(199, 0, 11, 0.2);
    color: var(--primary-light);
}

/* Devices Section */
.devices {
    padding: 100px 0;
}

/* Chip Selector Tabs */
.chip-selector {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.chip-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.chip-tab:hover {
    border-color: var(--primary);
    color: var(--white);
    background: rgba(199, 0, 11, 0.08);
}

.chip-tab.active {
    background: rgba(199, 0, 11, 0.15);
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
}

.chip-icon {
    font-size: 0.9rem;
}

/* Chip Content */
.chip-content {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Coming Soon Card */
.coming-soon-card {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 40px;
    background: var(--dark-light);
    border-radius: var(--radius);
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.coming-soon-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.coming-soon-card p {
    color: var(--gray);
    margin-bottom: 30px;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle .arrow {
    font-size: 0.7rem;
    transition: var(--transition);
}

.nav-dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    list-style: none;
    margin-top: 10px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    transition: var(--transition);
    color: var(--white);
    text-decoration: none;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: var(--primary);
    color: var(--white);
}

.dropdown-menu a::after {
    display: none;
}

.device-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-btn,
.category-btn-kirin {
    padding: 12px 28px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.category-btn:hover,
.category-btn.active,
.category-btn-kirin:hover,
.category-btn-kirin.active {
    background: var(--primary);
    border-color: var(--primary);
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.device-card {
    background: var(--dark-light);
    padding: 25px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    text-align: center;
}

.device-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.device-chip {
    display: inline-block;
    padding: 5px 12px;
    background: var(--gradient);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.device-chip.repair {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    animation: pulse-repair 2s infinite;
}

@keyframes pulse-repair {
    0%, 100% { box-shadow: 0 0 5px rgba(243, 156, 18, 0.5); }
    50% { box-shadow: 0 0 20px rgba(243, 156, 18, 0.8); }
}

.repair-chip-btn {
    background: linear-gradient(135deg, #f39c12, #e67e22) !important;
    border-color: #f39c12 !important;
}

.repair-chip-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.repair-chip-header {
    text-align: center;
    margin-bottom: 30px;
}

.repair-chip-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #f39c12;
}

.repair-chip-header p {
    color: var(--gray);
}

.repair-card {
    border-color: rgba(243, 156, 18, 0.3) !important;
}

.repair-card:hover {
    border-color: #f39c12 !important;
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.2);
}

.device-card h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.device-card p {
    color: var(--gray);
    font-size: 0.85rem;
}

.device-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.device-name {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 5px;
}

.device-model {
    display: block;
    color: var(--gray);
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.chip-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chip-badge.qualcomm {
    background: linear-gradient(135deg, #e31937, #cc0033);
    color: white;
}

.chip-badge.kirin-9000 {
    background: linear-gradient(135deg, #ff6b00, #ff9500);
    color: white;
}

.chip-badge.kirin-990e {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
}

.chip-badge.kirin-9905g {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    color: #333;
}

.chip-badge.kirin-990 {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.chip-badge.kirin-985 {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
}

.chip-badge.kirin-980 {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
}

.chip-badge.kirin-970 {
    background: linear-gradient(135deg, #1abc9c, #16a085);
    color: white;
}

.chip-badge.kirin-820 {
    background: linear-gradient(135deg, #27ae60, #1e8449);
    color: white;
}

.chip-badge.kirin-810 {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
}

.chip-badge.kirin-710 {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;
}

.kirin-card {
    border-color: rgba(255, 107, 0, 0.2);
}

.kirin-card:hover {
    border-color: #ff6b00;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
}

.kirin-990e-card {
    border-color: rgba(230, 126, 34, 0.2);
}

.kirin-990e-card:hover {
    border-color: #e67e22;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.15);
}

.kirin-9905g-card {
    border-color: rgba(241, 196, 15, 0.2);
}

.kirin-9905g-card:hover {
    border-color: #f1c40f;
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.15);
}

.kirin-990-card {
    border-color: rgba(231, 76, 60, 0.2);
}

.kirin-990-card:hover {
    border-color: #e74c3c;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.15);
}

.kirin-985-card {
    border-color: rgba(46, 204, 113, 0.2);
}

.kirin-985-card:hover {
    border-color: #2ecc71;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.15);
}

.kirin-980-card {
    border-color: rgba(230, 126, 34, 0.2);
}

.kirin-980-card:hover {
    border-color: #e67e22;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.15);
}

.kirin-970-card {
    border-color: rgba(26, 188, 156, 0.2);
}

.kirin-970-card:hover {
    border-color: #1abc9c;
    box-shadow: 0 10px 30px rgba(26, 188, 156, 0.15);
}

.kirin-820-card {
    border-color: rgba(39, 174, 96, 0.2);
}

.kirin-820-card:hover {
    border-color: #27ae60;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.15);
}

.kirin-810-card {
    border-color: rgba(155, 89, 182, 0.2);
}

.kirin-810-card:hover {
    border-color: #9b59b6;
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.15);
}

.kirin-710-card {
    border-color: rgba(0, 180, 216, 0.2);
}

.kirin-710-card:hover {
    border-color: #00b4d8;
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.15);
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: var(--dark-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    position: relative;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(199, 0, 11, 0.1);
    z-index: 0;
}

.step-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.step-card h3 {
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.step-card p {
    color: var(--gray);
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: radial-gradient(ellipse at center, rgba(199, 0, 11, 0.2) 0%, transparent 70%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-buttons {
    margin-bottom: 30px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-features span {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: var(--dark-light);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 24px 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
}

/* Footer Logo Box */
.footer-brand-col {
    display: flex;
    align-items: flex-start;
}

.footer-logo-box {
    background: linear-gradient(145deg, #ffffff 0%, #f8f8f8 100%);
    border-radius: 16px;
    padding: 25px 35px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(199, 0, 11, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-logo-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #ff4444, var(--primary));
}

.footer-logo-inner {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff3333 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(199, 0, 11, 0.4);
}

.footer-logo-icon {
    font-size: 2rem;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.footer-logo-stars {
    color: var(--primary);
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.footer-logo-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #222;
    margin-top: 5px;
}

.footer-logo-name span {
    color: var(--primary);
}

.footer-logo-tagline {
    font-size: 0.75rem;
    color: #888;
    font-weight: 500;
    margin-top: 3px;
    letter-spacing: 0.5px;
}

.footer-col h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 0.92rem;
    margin-bottom: 12px;
    transition: opacity 0.25s, color 0.25s;
}

.footer-col a:hover {
    opacity: 0.8;
    color: var(--primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 50px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.social-icon.telegram:hover {
    background: #0088cc;
    border-color: #0088cc;
    color: white;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #dc2743;
    color: white;
}

.social-icon.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: white;
}

.social-icon.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
    color: white;
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-label {
    font-size: 0.8rem;
    color: var(--gray);
}

.payment-icons {
    display: flex;
    gap: 8px;
}

.payment-icon {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.payment-icon:hover {
    transform: scale(1.05);
}

/* Mobile Bottom Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    z-index: 9998;
    justify-content: space-around;
    align-items: center;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--gray);
    padding: 8px 16px;
    border-radius: 12px;
    transition: all 0.3s;
    position: relative;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
    color: var(--primary);
}

.mobile-nav-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--primary);
    border-radius: 0 0 3px 3px;
}

.mobile-nav-icon {
    font-size: 1.3rem;
}

.mobile-nav-text {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Show on mobile */
@media (max-width: 768px) {
    .mobile-nav {
        display: flex;
        height: 56px;
        padding: 8px 0;
    }
    
    /* Adjust widgets position for mobile nav */
    .chat-widget {
        bottom: 70px;
        right: 15px;
    }

    .download-widget {
        bottom: 70px;
        left: 15px;
    }
    
    /* Add padding to footer for mobile nav */
    footer {
        padding-bottom: 70px;
    }
}

.footer-copyright {
    text-align: center;
    padding: 30px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, transparent, rgba(199, 0, 11, 0.05));
}

.copyright-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.copyright-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: 700;
}

.copyright-logo .logo-icon {
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.copyright-logo .logo-text {
    color: var(--white);
}

.copyright-logo .highlight {
    color: var(--primary);
}

.copyright-text {
    color: var(--gray);
    font-size: 0.9rem;
}

.copyright-text .brand-name {
    color: var(--primary);
    font-weight: 600;
}

.copyright-tagline {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.copyright-tagline .counter {
    color: #4ade80;
    font-weight: 700;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand-col {
        grid-column: 1 / -1;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand-col {
        grid-column: 1 / -1;
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-payment {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ========================================
   MOBILE RESPONSIVE - FIXED
   ======================================== */

/* Tablet */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        margin-top: 40px;
        order: 2;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .hero-image {
        margin-top: 30px;
    }

    .phone-mockup {
        width: 200px;
        height: 400px;
    }

    .floating-card {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .btn-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .device-categories {
        gap: 10px;
    }

    .category-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Footer Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-links a {
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-copyright {
        text-align: center;
    }

    .footer-payments {
        justify-content: center;
    }

    .floating-card {
        display: none;
    }

    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 140px 0 40px;
    }

    .badge {
        font-size: 0.7rem;
        padding: 6px 12px;
        margin-bottom: 15px;
        margin-top: 10px;
    }

    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 25px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .phone-mockup {
        width: 180px;
        height: 360px;
        border-radius: 30px;
    }

    .phone-screen {
        border-radius: 22px;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .screen-text {
        font-size: 0.9rem;
    }

    .screen-subtext {
        font-size: 0.75rem;
    }

    /* Section titles */
    h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    /* Service cards */
    .service-card {
        padding: 20px;
    }

    /* Device cards */
    .device-card {
        padding: 15px;
    }

    /* Hide custom cursor on mobile */
    .cursor-core,
    .cursor-ring,
    .cursor-glow,
    .cursor-trail {
        display: none !important;
    }
    
    body, * {
        cursor: auto !important;
    }
}

/* Animations on scroll */
.service-card,
.device-card,
.step-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Payment Methods */
.payment-methods {
    margin-top: 40px;
    text-align: center;
}

.payment-methods p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: var(--transition);
}

.payment-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.payment-icon svg {
    width: 32px;
    height: 32px;
}

.payment-icon.binance {
    color: #F0B90B;
}

.payment-icon.crypto .crypto-icon {
    font-size: 2rem;
    color: #F7931A;
}

.payment-icon.usdt .usdt-icon {
    font-size: 2rem;
    color: #26A17B;
}

.payment-icon span:last-child {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Download Tool Widget */
.download-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
}

.download-bubble {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #ff3333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(199, 0, 11, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.download-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(199, 0, 11, 0.6);
}

.download-icon {
    font-size: 1.5rem;
}

.download-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse-ring 2s infinite;
    z-index: -1;
}

.download-box {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 320px;
    background: var(--dark-light);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
}

.download-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.download-header {
    background: linear-gradient(135deg, var(--primary), #ff3333);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.download-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.download-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.download-header h4 {
    color: var(--white);
    font-size: 1rem;
    margin: 0;
}

.tool-status {
    color: #4ade80;
    font-size: 0.75rem;
}

.download-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.download-close:hover {
    opacity: 1;
}

.download-body {
    padding: 20px;
}

.download-message {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
}

.download-message p {
    margin: 0;
    color: var(--white);
    font-size: 0.9rem;
}

.download-message p:first-child {
    margin-bottom: 5px;
}

.download-features {
    margin-bottom: 20px;
}

.feature-item {
    color: var(--white);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:last-child {
    border-bottom: none;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), #ff3333);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(199, 0, 11, 0.4);
}

.download-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.75rem;
    margin-top: 15px;
    margin-bottom: 0;
}

/* Live Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.chat-bubble {
    width: 65px;
    height: 65px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(199, 0, 11, 0.4);
    transition: var(--transition);
    position: relative;
}

.chat-bubble:hover {
    transform: scale(1.1);
}

.chat-icon {
    font-size: 1.8rem;
}

.chat-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: var(--dark-light);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: none;
    animation: slideUp 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-box.active {
    display: block;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background: var(--gradient);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.chat-header h4 {
    margin: 0;
    font-size: 1rem;
}

.online-status {
    font-size: 0.8rem;
    color: #00ff88;
}

.chat-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.chat-close:hover {
    transform: scale(1.2);
}

.chat-body {
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.chat-message {
    margin-bottom: 15px;
}

.chat-message.bot p {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 15px 15px 15px 5px;
    display: inline-block;
    max-width: 90%;
    font-size: 0.95rem;
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.chat-option {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 12px 16px;
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    font-size: 0.9rem;
}

.chat-option:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.chat-footer {
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.chat-wa-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Mobile Chat Widget */
@media (max-width: 768px) {
    .chat-widget {
        bottom: 100px;
        right: 15px;
    }

    .download-widget {
        bottom: 170px;
        left: 15px;
    }
    
    .chat-box {
        width: calc(100vw - 40px);
        right: -10px;
    }
    
    .chat-bubble {
        width: 50px;
        height: 50px;
    }
    
    .chat-icon {
        font-size: 1.3rem;
    }

    .download-box {
        width: calc(100vw - 40px);
        left: -10px;
    }

    .download-bubble {
        width: 50px;
        height: 50px;
    }

    .download-icon {
        font-size: 1.3rem;
    }
}
