.bg-secondary {
    --bs-bg-opacity: 1;
    background-color: #1e1e1e !important;
}
body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Roboto', sans-serif;
}
header {
    background: #1e1e1e;
    padding: 1rem 0;
}
.footer {
    background: #1e1e1e;
    padding: 1rem 0;
}
.footer a {
    color: #bbb;
    text-decoration: none;
}
.footer a:hover {
    color: #fff;
}
.bg-half-170 {
    background: linear-gradient(135deg, #2a2a2a, #222222);
    padding: 4rem 0;
    text-align: center;
}
.short-url-container {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.short-url {
    background: #1e1e1e;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    color: #1a73e8;
    border: 1px solid #444;
}
.copy-button {
    background-color: #1a73e8;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    color: #fff;
}
.counter-container {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: #e0e0e0;
}
.counter {
    text-align: center;
    background: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
}
.counter h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #1a73e8;
    margin-bottom: 10px;
}
.counter p {
    font-size: 1rem;
    color: #d9d9d9;
}
.features-section {
    background: linear-gradient(135deg, #242424, #1a1a1a);
    padding: 60px 0;
    color: #ffffff;
}
.feature-card {
    background: #1e1e1e;
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.2s ease, background 0.2s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, #2b2b2b, #1f1f1f);
}
.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a73e8;
}
.feature-card:hover .feature-icon {
    color: #4be87b;
}
.bg-secondary {
    --bs-bg-opacity: 1;
    background-color: #1e1e1e !important;
}

/* Custom CSS for Chrome Extension Section */
.chrome-extension {
    background-color: #1e1e1e; /* Match your theme */
    border-radius: 10px;
    margin: 20px 0;
}

.extension-logo {
    transition: transform 0.3s ease;
}

.extension-logo:hover {
    transform: scale(1.1); /* Add a hover effect */
}

.chrome-extension a {
    text-decoration: none;
    color: #fff; /* Match your theme */
}

.chrome-extension a:hover {
    color: #1a73e8; /* Highlight color */
}

