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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #0b0c12;
    color: #1e293b;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

/* Background Damaged Chrome & Extension Icons */
.bg-broken-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.broken-icon {
    position: absolute;
    color: rgba(255, 27, 45, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    transition: all 0.3s ease;
}

.broken-icon .error-badge {
    position: absolute;
    font-size: 0.38em;
    color: rgba(255, 27, 45, 0.7);
    top: -5%;
    right: -10%;
    background: #0b0c12;
    border-radius: 50%;
    padding: 2px;
}

/* Icon Positions & Sizes around the background */
.icon-pos-1 {
    top: 10%;
    left: 6%;
    font-size: 6.5rem;
    transform: rotate(-10deg);
}

.icon-pos-2 {
    top: 8%;
    right: 8%;
    font-size: 8rem;
    transform: rotate(8deg);
    color: rgba(255, 27, 45, 0.22);
}

.icon-pos-3 {
    top: 45%;
    left: 3%;
    font-size: 5.5rem;
    transform: rotate(-15deg);
}

.icon-pos-4 {
    top: 42%;
    right: 4%;
    font-size: 6rem;
    transform: rotate(12deg);
}

.icon-pos-5 {
    bottom: 10%;
    left: 7%;
    font-size: 7rem;
    transform: rotate(-8deg);
}

.icon-pos-6 {
    bottom: 8%;
    right: 7%;
    font-size: 6.5rem;
    transform: rotate(15deg);
}

.icon-pos-7 {
    top: 22%;
    left: 20%;
    font-size: 4rem;
    opacity: 0.5;
}

.icon-pos-8 {
    bottom: 22%;
    right: 18%;
    font-size: 4.5rem;
    opacity: 0.5;
}

/* Page Container */
.page-container {
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 30px 20px;
}

/* Main Card - Wider Container */
.store-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55), 0 0 35px rgba(255, 27, 45, 0.22);
    max-width: 580px; /* Wider card */
    width: 100%;
    padding: 40px 38px;
    text-align: center;
}

/* Notice Tag */
.compatibility-notice {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 27, 45, 0.08);
    color: #dc2626;
    border: 1px solid rgba(255, 27, 45, 0.25);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Browser Visual Transfer */
.browser-transfer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 22px;
}

.browser-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
}

.chrome-badge {
    background-color: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.transfer-arrow {
    color: #ff1b2d;
    font-size: 1.2rem;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(4px); opacity: 1; }
}

.opera-badge {
    background: linear-gradient(135deg, #ff1b2d 0%, #d60e20 100%);
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(255, 27, 45, 0.35);
}

/* Typography */
h1 {
    font-size: 1.7rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
}

.store-desc {
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
}

.store-desc strong {
    color: #0f172a;
}

/* Extension Features Box */
.extension-features {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 18px 22px;
    margin-bottom: 24px;
    text-align: left;
}

.features-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 800;
    color: #ff1b2d;
    margin-bottom: 14px;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.features-list li i {
    color: #10b981;
    font-size: 1.05rem;
    margin-top: 2px;
}

.features-list strong {
    display: block;
    font-size: 0.9rem;
    color: #0f172a;
    font-weight: 700;
}

.features-list span {
    display: block;
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.4;
}

/* Steps */
.install-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.step-item {
    background: rgba(255, 27, 45, 0.04);
    border: 1px dashed rgba(255, 27, 45, 0.25);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.85rem;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.step-badge {
    background-color: #ff1b2d;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 5px;
    white-space: nowrap;
}

/* Primary Download Button */
.btn-store-primary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #ff1b2d 0%, #d60e20 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 18px 26px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(255, 27, 45, 0.38);
    transition: all 0.25s ease;
}

.btn-store-primary:hover {
    background: linear-gradient(135deg, #ff3344 0%, #c40a1b 100%);
    box-shadow: 0 14px 32px rgba(255, 27, 45, 0.5);
    transform: translateY(-2px);
}

.btn-store-primary i.fa-opera {
    font-size: 2.2rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    margin-left: 14px;
}

.btn-title {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.btn-sub {
    font-size: 0.78rem;
    opacity: 0.9;
    font-weight: 500;
}

.download-icon {
    font-size: 1.2rem;
}

/* Footer Verified */
.verified-footer {
    margin-top: 18px;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.verified-footer i {
    color: #10b981;
}

/* Responsive */
@media (max-width: 620px) {
    .store-card {
        padding: 30px 22px;
        max-width: 100%;
    }

    h1 {
        font-size: 1.4rem;
    }

    .btn-store-primary {
        padding: 14px 18px;
    }

    .btn-title {
        font-size: 0.98rem;
    }
}
