:root {
    --home-primary: #1890ff;
    --home-primary-dark: #0066cc;
    --home-primary-light: #69c0ff;
    --home-bg-dark: #0a0e27;
    --home-bg-card: rgba(255, 255, 255, 0.05);
    --home-bg-card-hover: rgba(255, 255, 255, 0.08);
    --home-border: rgba(255, 255, 255, 0.1);
    --home-border-hover: rgba(24, 144, 255, 0.5);
    --home-text-primary: #ffffff;
    --home-text-secondary: rgba(255, 255, 255, 0.7);
    --home-text-muted: rgba(255, 255, 255, 0.5);
    --home-glow: 0 0 30px rgba(24, 144, 255, 0.3);
    --home-glow-strong: 0 0 60px rgba(24, 144, 255, 0.5);
    --home-gold: #ffd700;
    --home-red: #ff6b6b;
    --home-green: #51cf66;
}

body {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4e 50%, #0d1229 100%);
    min-height: 100vh;
    color: var(--home-text-primary);
    overflow-x: hidden;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231890ff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        radial-gradient(ellipse at 20% 20%, rgba(24, 144, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(72, 200, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(24, 144, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='1' fill='%231890ff' fill-opacity='0.15'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    animation: stars 20s linear infinite;
}

@keyframes stars {
    from { background-position: 0 0; }
    to { background-position: 100px 100px; }
}

.header {
    position: relative;
    z-index: 100;
}

.home-page-banner {
    position: relative;
    text-align: center;
    padding: 120px 20px 100px;
    background:
        linear-gradient(180deg, rgba(24, 144, 255, 0.2) 0%, transparent 100%),
        radial-gradient(ellipse at center top, rgba(24, 144, 255, 0.15) 0%, transparent 60%);
    overflow: hidden;
}

.home-page-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(24, 144, 255, 0.25) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}

.home-page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--home-bg-dark), transparent);
    pointer-events: none;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.home-page-banner h1 {
    position: relative;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #69c0ff 30%, #1890ff 70%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out, textGlow 3s ease-in-out infinite;
    letter-spacing: 2px;
}

@keyframes textGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(24, 144, 255, 0.3)); }
    50% { filter: drop-shadow(0 0 40px rgba(24, 144, 255, 0.6)); }
}

.home-page-banner p {
    position: relative;
    font-size: 1.25rem;
    color: var(--home-text-secondary);
    font-weight: 400;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.home-section {
    position: relative;
    padding: 80px 0;
    z-index: 1;
}

.home-section-alt {
    background: linear-gradient(180deg, transparent 0%, rgba(24, 144, 255, 0.08) 50%, transparent 100%);
}

.home-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.home-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(24, 144, 255, 0.25), rgba(24, 144, 255, 0.1));
    border: 1px solid rgba(24, 144, 255, 0.4);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--home-primary-light);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.home-section-badge::before {
    content: '';
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--home-primary), var(--home-primary-light));
    border-radius: 50%;
    animation: blink 2s infinite;
    box-shadow: 0 0 10px var(--home-primary);
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.home-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--home-text-primary);
    margin-bottom: 15px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
    letter-spacing: 1px;
}

.home-section-subtitle {
    font-size: 1.1rem;
    color: var(--home-text-secondary);
    animation: fadeInUp 0.6s ease-out 0.2s both;
    font-weight: 300;
}

.home-store-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1199.98px) {
    .home-store-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991.98px) {
    .home-store-grid { grid-template-columns: repeat(2, 1fr); }
    .home-page-banner h1 { font-size: 2.5rem; }
}

@media (max-width: 575.98px) {
    .home-store-grid { grid-template-columns: 1fr; }
    .home-page-banner h1 { font-size: 2rem; padding: 0 10px; }
    .home-page-banner { padding: 60px 15px 50px; }
}

.home-store-item {
    position: relative;
    background: linear-gradient(145deg, var(--home-bg-card) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--home-border);
    border-radius: 24px;
    padding: 32px 28px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out both;
    backdrop-filter: blur(10px);
}

.home-store-item:nth-child(1) { animation-delay: 0.1s; }
.home-store-item:nth-child(2) { animation-delay: 0.15s; }
.home-store-item:nth-child(3) { animation-delay: 0.2s; }
.home-store-item:nth-child(4) { animation-delay: 0.25s; }
.home-store-item:nth-child(5) { animation-delay: 0.3s; }
.home-store-item:nth-child(6) { animation-delay: 0.35s; }

.home-store-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--home-primary-light), var(--home-primary), var(--home-primary-light), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.home-store-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(24, 144, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.home-store-item:hover {
    transform: translateY(-12px);
    border-color: var(--home-border-hover);
    box-shadow: var(--home-glow), 0 20px 40px rgba(0, 0, 0, 0.3);
    background: linear-gradient(145deg, var(--home-bg-card-hover) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.home-store-item:hover::before {
    opacity: 1;
}

.home-store-item:hover::after {
    opacity: 1;
}

.store-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    object-fit: contain;
    margin-bottom: 24px;
    transition: transform 0.4s;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

.home-store-item:hover .store-logo {
    transform: scale(1.12) rotate(3deg);
}

.home-store-item h6 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--home-text-primary);
    letter-spacing: 0.5px;
}

.home-store-item h6 a {
    color: var(--home-text-primary);
    text-decoration: none;
    transition: all 0.3s;
}

.home-store-item h6 a:hover {
    color: var(--home-primary-light);
    text-shadow: 0 0 20px rgba(105, 192, 255, 0.5);
}

.home-store-item p.home-store-summary {
    font-size: 0.95rem;
    color: var(--home-text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-store-actions {
    margin-bottom: 20px;
}

.home-store-btn-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: auto;
    background: linear-gradient(135deg, rgba(24, 144, 255, 0.15), rgba(24, 144, 255, 0.08));
    border: 1px solid rgba(24, 144, 255, 0.3);
    color: var(--home-primary-light);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.home-store-btn-detail:hover {
    background: linear-gradient(135deg, rgba(24, 144, 255, 0.25), rgba(24, 144, 255, 0.15));
    border-color: var(--home-primary);
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(24, 144, 255, 0.2);
}

.home-store-btn-detail i {
    font-size: 16px;
    transition: transform 0.3s;
}

.home-store-btn-detail:hover i {
    transform: translateX(3px);
}

.home-store-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--home-border);
}

.home-store-price {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 50%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    flex-shrink: 0;
}

.home-store-price span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--home-text-muted);
    margin-left: 4px;
}

.home-store-btns {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.store-download-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 34px;
    background: linear-gradient(135deg, var(--home-primary) 0%, var(--home-primary-dark) 100%);
    border-radius: 17px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(24, 144, 255, 0.3);
    flex-shrink: 0;
}

.store-download-box:hover {
    box-shadow: 0 6px 25px rgba(24, 144, 255, 0.5);
    transform: translateY(-2px);
}

.store-download-box > span {
    height: 34px;
    line-height: 34px;
    font-size: 12px;
    color: #fff;
    padding: 0 12px;
    border-radius: 17px 0 0 17px;
    white-space: nowrap;
}

.store-download-box > span a {
    color: #fff !important;
    text-decoration: none;
}

.store-download-box .down-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 0 17px 17px 0;
    transition: background 0.3s;
    flex-shrink: 0;
}

.store-download-box:hover .down-arrow {
    background: rgba(255, 255, 255, 0.25);
}

.store-download-box .down-arrow svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s;
    fill: #fff;
}

.store-download-box.active .down-arrow svg {
    transform: rotate(180deg);
}

.store-download-box ul {
    position: absolute;
    left: 50%;
    top: 42px;
    transform: translateX(-50%);
    z-index: 2020;
    display: none;
    min-width: 130px;
    background: rgba(20, 25, 50, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--home-border);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    padding: 8px 0;
}

.store-download-box ul::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--home-border);
}

.store-download-box.active ul {
    display: block;
    animation: dropdownFadeIn 0.3s ease-out;
}

@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.store-download-box ul li a {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    font-size: 14px;
    color: var(--home-text-primary);
    text-decoration: none;
    transition: all 0.2s;
    border-radius: 8px;
    margin: 2px 6px;
}

.store-download-box ul li a:hover {
    background: linear-gradient(135deg, rgba(24, 144, 255, 0.2), rgba(24, 144, 255, 0.1));
    color: var(--home-primary-light);
    transform: translateX(5px);
}

.store-download-box ul li a i {
    font-size: 16px;
    width: 20px;
}

.store-download-box ul li a span {
    margin-left: 10px;
}

.home-floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, var(--home-primary-light), transparent);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 22s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 19s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 21s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 17s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2.5s; animation-duration: 23s; }
.particle:nth-child(8) { left: 80%; animation-delay: 1.5s; animation-duration: 20s; }
.particle:nth-child(9) { left: 90%; animation-delay: 4.5s; animation-duration: 18s; }

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

.home-store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 14px;
    border-radius: 17px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    flex-shrink: 0;
    white-space: nowrap;
}

.store-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 34px;
    padding: 0 14px;
    background: linear-gradient(135deg, var(--home-primary) 0%, var(--home-primary-dark) 100%);
    border-radius: 17px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(24, 144, 255, 0.3);
    flex-shrink: 0;
    white-space: nowrap;
}

.store-download-btn:hover {
    box-shadow: 0 6px 25px rgba(24, 144, 255, 0.5);
    transform: translateY(-2px);
    color: #fff;
}

.store-download-btn i {
    font-size: 14px;
}

.home-advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 991.98px) {
    .home-advantage-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575.98px) {
    .home-advantage-grid { grid-template-columns: 1fr; }
}

.home-advantage-card {
    position: relative;
    background: linear-gradient(145deg, var(--home-bg-card) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--home-border);
    border-radius: 24px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out 0.4s both;
    backdrop-filter: blur(10px);
}

.home-advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(24, 144, 255, 0.25) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.home-advantage-card:hover {
    transform: translateY(-10px);
    border-color: var(--home-border-hover);
    box-shadow: var(--home-glow), 0 20px 40px rgba(0, 0, 0, 0.3);
}

.home-advantage-card:hover::before {
    opacity: 1;
}

.home-advantage-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 24px;
    transition: transform 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.home-advantage-card:hover img {
    transform: scale(1.12);
    border-color: rgba(24, 144, 255, 0.3);
}

.home-advantage-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--home-text-primary);
    letter-spacing: 0.5px;
}

.home-advantage-card p {
    font-size: 0.95rem;
    color: var(--home-text-secondary);
    line-height: 1.6;
}

.mobile-optimized {
    display: none;
}

.home-bundle-banner {
    position: relative;
    z-index: 1;
    padding: 60px 0;
    overflow: hidden;
}

.home-bundle-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(24, 144, 255, 0.12) 50%, rgba(139, 92, 246, 0.08) 100%);
    border-radius: 28px;
    padding: 50px 40px;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out both;
}

.home-bundle-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.6), rgba(24, 144, 255, 0.6), rgba(139, 92, 246, 0.6));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.home-bundle-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 215, 0, 0.1), transparent, rgba(24, 144, 255, 0.1), transparent);
    animation: bundleRotate 8s linear infinite;
    pointer-events: none;
}

@keyframes bundleRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.home-bundle-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.home-bundle-info {
    flex: 1;
}

.home-bundle-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--home-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.2); }
    50% { box-shadow: 0 0 25px rgba(255, 215, 0, 0.4); }
}

.home-bundle-badge i {
    font-size: 14px;
}

.home-bundle-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 40%, #1890ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.home-bundle-desc {
    font-size: 1.05rem;
    color: var(--home-text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 560px;
}

.home-bundle-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.home-bundle-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--home-text-secondary);
}

.home-bundle-feature i {
    color: var(--home-green);
    font-size: 16px;
}

.home-bundle-action {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.home-bundle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 50%, #ff8c00 100%);
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0a0e27;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3), 0 0 60px rgba(255, 215, 0, 0.15);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.home-bundle-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.home-bundle-btn:hover::before {
    left: 100%;
}

.home-bundle-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5), 0 0 80px rgba(255, 215, 0, 0.25);
    color: #0a0e27;
    text-decoration: none;
}

.home-bundle-btn i {
    font-size: 18px;
}

.home-bundle-price-tag {
    text-align: center;
}

.home-bundle-price-label {
    font-size: 0.85rem;
    color: var(--home-text-muted);
    margin-bottom: 4px;
}

.home-bundle-price {
    font-size: 2.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.home-bundle-price-unit {
    font-size: 1rem;
    font-weight: 600;
    color: var(--home-text-muted);
}

.home-bundle-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--home-gold);
    border-radius: 50%;
    pointer-events: none;
    animation: sparkle 3s ease-in-out infinite;
}

.home-bundle-sparkle:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.home-bundle-sparkle:nth-child(2) { top: 25%; right: 12%; animation-delay: 0.5s; }
.home-bundle-sparkle:nth-child(3) { bottom: 20%; left: 15%; animation-delay: 1s; }
.home-bundle-sparkle:nth-child(4) { bottom: 30%; right: 8%; animation-delay: 1.5s; }
.home-bundle-sparkle:nth-child(5) { top: 50%; left: 3%; animation-delay: 2s; }
.home-bundle-sparkle:nth-child(6) { top: 10%; right: 25%; animation-delay: 2.5s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1.5); }
}

@media (max-width: 991.98px) {
    .home-bundle-inner {
        flex-direction: column;
        text-align: center;
    }

    .home-bundle-desc {
        max-width: 100%;
    }

    .home-bundle-features {
        justify-content: center;
    }

    .home-bundle-action {
        flex-direction: column;
    }

    .home-bundle-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 575.98px) {
    .home-bundle-card {
        padding: 30px 20px;
    }

    .home-bundle-title {
        font-size: 1.5rem;
    }

    .home-bundle-desc {
        font-size: 0.95rem;
    }

    .home-bundle-features {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .home-bundle-btn {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .home-bundle-price {
        font-size: 2rem;
    }

    .home-bundle-banner {
        padding: 40px 0;
    }
}

@media (max-width: 575.98px) {
    .store-download-box,
    .store-download-btn,
    .home-store-btn,
    .home-store-btn-detail {
        width: 100%;
        justify-content: center;
    }

    .home-store-btns {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .home-store-actions {
        margin-bottom: 16px;
    }

    .home-store-btn-detail {
        width: 100%;
        text-align: center;
    }

    .home-store-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .home-store-price {
        text-align: center;
        font-size: 1.3rem;
    }

    .home-advantage-card {
        padding: 28px 20px;
    }

    .home-section {
        padding: 60px 0;
    }

    .home-section-title {
        font-size: 1.8rem;
    }

    .home-page-banner h1 {
        font-size: 2rem;
    }

    .home-page-banner p {
        font-size: 1rem;
    }

    .particle {
        width: 4px;
        height: 4px;
    }
}

@media (max-width: 380px) {
    .home-store-btns {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .store-download-box,
    .store-download-btn,
    .home-store-btn {
        width: auto;
        flex: 1;
        min-width: calc(50% - 4px);
    }

    .store-download-box span,
    .store-download-btn,
    .home-store-btn {
        justify-content: center;
    }
}
