/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #f7931a;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding-top: 60px;
    min-height: 70vh;
    padding-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content {
    background: rgba(255, 255, 255, 0.13);
    border-radius: 24px;
    box-shadow: 0 6px 32px rgba(103, 126, 234, 0.10);
    padding: 2.2rem 1.2rem 2.5rem 1.2rem;
    margin-bottom: 1.2rem;
    width: 100%;
    text-align: center;
    position: relative;
}

.hero-content h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.1rem;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(103, 126, 234, 0.13);
    letter-spacing: 0.5px;
}

.hero-content p {
    font-size: 1.1rem;
    color: #f3e9ff;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-logo-img {
    display: block;
    margin: 0 auto 1.2rem auto;
    width: 90px;
    height: 90px;
    max-width: 30vw;
    max-height: 30vw;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(247, 147, 26, 0.13);
    background: #fffbe6;
    border: 2px solid #fff;
}

.hero-stats {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
}

.stat {
    background: #fff;
    color: #333;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(103, 126, 234, 0.07);
    padding: 0.5rem 1.1rem;
    min-width: 70px;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 600;
    border: 1.5px solid #f3e9ff;
}

.stat h3 {
    color: #f7931a;
    font-size: 1.1rem;
    margin-bottom: 0.1rem;
    font-weight: 700;
}

.stat p {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 0;
    font-weight: 500;
}

.hero-buttons {
    margin-top: 1.1rem;
}

.btn-primary {
    width: 100%;
    font-size: 1.2rem;
    padding: 1.1rem 0;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(247, 147, 26, 0.13);
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #f7931a 60%, #ffb347 100%);
    color: #fff;
    font-weight: 700;
    border: none;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #ffb347 0%, #f7931a 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.03);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mining-animation {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bitcoin-symbol {
    font-size: 8rem;
    color: #f7931a;
    animation: pulse 2s infinite;
}

.mining-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(247, 147, 26, 0.3);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.mining-particles::before,
.mining-particles::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #f7931a;
    border-radius: 50%;
    animation: particle 3s infinite;
}

.mining-particles::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.mining-particles::after {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

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

    to {
        transform: rotate(360deg);
    }
}

@keyframes particle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

/* Features Section */
.features {
    padding: 1.1rem 0 2rem 0;
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 2.2rem;
    color: #333;
    letter-spacing: 0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}

.feature-card {
    background: linear-gradient(135deg, #fffbe6 60%, #f8f9fa 100%);
    padding: 1.3rem 1.1rem 1.1rem 1.1rem;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(103, 126, 234, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1.5px solid #f3e9ff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 220px;
}

.feature-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(247, 147, 26, 0.13);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f7931a 60%, #ffb347 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem auto;
    box-shadow: 0 2px 8px rgba(247, 147, 26, 0.10);
}

.feature-icon i {
    font-size: 2rem;
    color: #fff;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* App Download Section */
.app-download {
    padding: 2.5rem 0 2rem 0;
    background: #f8f9fa;
}

.app-content {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(103, 126, 234, 0.08);
    padding: 2.2rem 1.2rem 2.2rem 1.2rem;
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.app-text {
    flex: 2;
}

.app-text h2 {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: #333;
    letter-spacing: 0.5px;
}

.app-text p {
    color: #555;
    margin-bottom: 1.1rem;
    font-size: 1.08rem;
    line-height: 1.7;
}

.app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
}

.app-feature {
    background: linear-gradient(135deg, #fffbe6 60%, #f8f9fa 100%);
    color: #333;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(103, 126, 234, 0.07);
    padding: 0.4rem 1rem;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    border: 1.5px solid #f3e9ff;
}

.app-feature i {
    color: #f7931a;
    font-size: 1.2rem;
    background: #fff;
    border-radius: 50%;
    padding: 0.3rem;
    box-shadow: 0 1px 4px rgba(247, 147, 26, 0.10);
}

.app-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.app-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(247, 147, 26, 0.13);
    background: #fffbe6;
    border: 1.5px solid #fff;
    margin-bottom: 0.7rem;
}

.screenshot-slider {
    width: 180px;
    height: 360px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.13);
    background: #222;
    margin: 0 auto;
}

.slider-images {
    border-radius: 18px;
}

.screenshot {
    border-radius: 18px;
}

.slider-btn {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .app-content {
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    }

    .app-image {
        margin-top: 1.2rem;
    }

    .app-features {
        gap: 0.3rem;
    }

    .screenshot-slider {
        width: 120px;
        height: 240px;
        border-radius: 10px;
    }

    .slider-images,
    .screenshot {
        border-radius: 10px;
    }

    .app-logo {
        width: 38px;
        height: 38px;
        border-radius: 8px;
    }

    .hero {
        padding-bottom: 0.2rem;
    }

    .features {
        padding: 0.5rem 0 0.7rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .app-download {
        padding: 1.1rem 0 0.7rem 0;
    }

    .app-content {
        padding: 0.7rem 0.2rem 0.7rem 0.2rem;
        border-radius: 13px;
        gap: 0.7rem;
    }

    .app-text h2 {
        font-size: 1.1rem;
        margin-bottom: 0.7rem;
    }

    .app-text p {
        font-size: 0.95rem;
        margin-bottom: 0.7rem;
    }

    .app-features {
        gap: 0.15rem;
        margin-bottom: 0.7rem;
    }

    .app-feature {
        padding: 0.2rem 0.5rem;
        font-size: 0.8rem;
        border-radius: 20px;
    }

    .app-logo {
        width: 28px;
        height: 28px;
        border-radius: 5px;
    }

    .screenshot-slider {
        width: 70px;
        height: 140px;
        border-radius: 6px;
    }

    .slider-images,
    .screenshot {
        border-radius: 6px;
    }

    .slider-btn {
        width: 22px;
        height: 22px;
        font-size: 0.8rem;
    }
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: white;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: #f7931a;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(247, 147, 26, 0.2);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: #f7931a;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
}

.period {
    font-size: 1rem;
    color: #666;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #666;
}

.pricing-features i {
    color: #28a745;
    margin-right: 0.5rem;
}

/* About Section */
.about {
    padding: 2.5rem 0 2rem 0;
    background: #f8f9fa;
}

.about-content {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(103, 126, 234, 0.08);
    padding: 2.2rem 1.2rem 2.2rem 1.2rem;
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    flex: 2;
}

.about-text h2 {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: #333;
    letter-spacing: 0.5px;
}

.about-text p {
    color: #555;
    margin-bottom: 1.1rem;
    font-size: 1.08rem;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 1.1rem;
    margin-top: 1.2rem;
}

.about-stat {
    background: linear-gradient(135deg, #fffbe6 60%, #f8f9fa 100%);
    color: #333;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(103, 126, 234, 0.07);
    padding: 0.5rem 1.1rem;
    min-width: 70px;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 600;
    border: 1.5px solid #f3e9ff;
}

.about-stat h4 {
    color: #f7931a;
    font-size: 1.1rem;
    margin-bottom: 0.1rem;
    font-weight: 700;
}

.about-stat p {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 0;
    font-weight: 500;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.data-center {
    position: relative;
    width: 120px;
    height: 120px;
    background: #fffbe6;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(247, 147, 26, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
}

.data-center i {
    font-size: 2.5rem;
    color: #f7931a;
}

.server-racks {
    position: absolute;
    width: 100%;
    height: 100%;
}

.rack {
    position: absolute;
    width: 24px;
    height: 48px;
    background: linear-gradient(135deg, #333, #666);
    border-radius: 5px;
    animation: glow 3s infinite;
}

.rack:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.rack:nth-child(2) {
    top: 40%;
    right: 20%;
    animation-delay: 1s;
}

.rack:nth-child(3) {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(247, 147, 26, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(247, 147, 26, 0.6);
    }
}

/* Contact Section */
.contact {
    padding: 2.5rem 0 2rem 0;
    background: #f8f9fa;
}

.contact-content {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(103, 126, 234, 0.08);
    padding: 2.2rem 1.2rem 2.2rem 1.2rem;
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #fffbe6 60%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 0.7rem 1rem;
    box-shadow: 0 2px 8px rgba(103, 126, 234, 0.07);
    border: 1.5px solid #f3e9ff;
}

.contact-item i {
    width: 38px;
    height: 38px;
    background: #f7931a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 1px 4px rgba(247, 147, 26, 0.10);
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: #333;
}

.contact-item p {
    color: #666;
    font-size: 0.98rem;
    margin-bottom: 0;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 1.2rem 1rem;
    box-shadow: 0 2px 8px rgba(103, 126, 234, 0.05);
    border: 1.5px solid #f3e9ff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f7931a;
}

.btn-primary {
    background: linear-gradient(135deg, #f7931a 60%, #ffb347 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.9rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(247, 147, 26, 0.10);
    transition: background 0.3s;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffb347 60%, #f7931a 100%);
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    }

    .contact-info,
    .contact-form {
        padding: 0.7rem 0.2rem;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 1.1rem 0 0.7rem 0;
    }

    .contact-content {
        padding: 0.7rem 0.2rem 0.7rem 0.2rem;
        border-radius: 13px;
        gap: 0.7rem;
    }

    .contact-item i {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .contact-item {
        padding: 0.4rem 0.7rem;
        border-radius: 8px;
    }

    .contact-form {
        padding: 0.5rem 0.2rem;
        border-radius: 8px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 0.7rem;
    }

    .btn-primary {
        font-size: 0.95rem;
        padding: 0.7rem 1.2rem;
    }
}

/* Footer */
.footer {
    padding: 1.5rem 0 0.7rem 0;
    background: #333;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f7931a;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.social-links a:hover {
    background: #f3f3f3;
}

.social-links img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f7931a;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
        position: sticky;
        top: 0;
        width: 100vw;
        z-index: 1000;
    }

    .nav-container {
        padding: 0 8px;
        max-width: 100vw;
    }

    .nav-logo {
        font-size: 1.1rem;
        gap: 0.3rem;
    }

    .site-logo {
        height: 28px;
        width: 28px;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
        z-index: 1101;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        right: 0;
        left: 0;
        background: #fff;
        flex-direction: column;
        gap: 1.2rem;
        align-items: flex-start;
        padding: 2.2rem 1.2rem 2.2rem 1.2rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
        transform: translateY(-120%);
        transition: transform 0.3s;
        z-index: 1100;
        width: 100vw;
        border-radius: 0 0 18px 18px;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.7rem 0.2rem;
        width: 100%;
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .app-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-features {
        grid-template-columns: 1fr;
    }

    .download-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .app-stats {
        justify-content: center;
    }

    .about-content {
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    }

    .about-image {
        margin-top: 1.2rem;
    }

    .about-stats {
        gap: 0.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .mining-animation {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .container {
        padding: 0 2px;
    }

    .hero {
        padding-top: 30px;
        min-height: 55vh;
        padding-bottom: 0.5rem;
    }

    .hero-container {
        padding: 0 2px;
        max-width: 100vw;
    }

    .hero-content {
        padding: 1.1rem 0.3rem 1.3rem 0.3rem;
        border-radius: 14px;
        margin-bottom: 0.7rem;
    }

    .hero-content h1 {
        font-size: 1.1rem;
        margin-bottom: 0.7rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .hero-logo-img {
        width: 38px;
        height: 38px;
        max-width: 18vw;
        max-height: 18vw;
        border-radius: 7px;
        margin-bottom: 0.5rem;
    }

    .hero-stats {
        gap: 0.2rem;
        margin-bottom: 0.7rem;
    }

    .stat {
        padding: 0.25rem 0.5rem;
        min-width: 48px;
        font-size: 0.8rem;
        border-radius: 20px;
    }

    .stat h3 {
        font-size: 0.85rem;
    }

    .stat p {
        font-size: 0.65rem;
    }

    .hero-buttons {
        margin-top: 0.5rem;
    }

    .btn-primary {
        font-size: 1rem;
        padding: 0.7rem 0;
        border-radius: 8px;
    }

    .app-logo {
        width: 28px;
        height: 28px;
        margin-bottom: 0.5rem;
    }

    .screenshot-slider {
        width: 90vw;
        max-width: 120px;
        height: 200px;
    }

    .slider-btn {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
    }

    .app-content {
        gap: 1.2rem;
    }

    .app-text h2 {
        font-size: 1.1rem;
        margin-bottom: 0.7rem;
    }

    .app-text p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .app-features {
        gap: 0.3rem;
    }

    .app-feature span {
        font-size: 0.9rem;
    }

    .download-buttons {
        gap: 0.5rem;
    }

    .apk-content h2 {
        font-size: 1.1rem;
    }

    .apk-content p {
        font-size: 0.95rem;
    }

    .apk-btn {
        font-size: 0.95rem;
        padding: 0.7rem 1.2rem;
    }

    .footer-content {
        gap: 1rem;
    }

    .footer-logo .site-logo {
        height: 20px;
        width: 20px;
    }

    .site-logo {
        height: 20px;
        width: 20px;
    }

    .about {
        padding: 1.1rem 0 0.7rem 0;
    }

    .about-content {
        padding: 0.7rem 0.2rem 0.7rem 0.2rem;
        border-radius: 13px;
        gap: 0.7rem;
    }

    .about-text h2 {
        font-size: 1.1rem;
        margin-bottom: 0.7rem;
    }

    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 0.7rem;
    }

    .about-stats {
        gap: 0.2rem;
        margin-top: 0.5rem;
    }

    .about-stat {
        padding: 0.25rem 0.5rem;
        min-width: 48px;
        font-size: 0.8rem;
        border-radius: 20px;
    }

    .about-stat h4 {
        font-size: 0.85rem;
    }

    .about-stat p {
        font-size: 0.65rem;
    }

    .data-center {
        width: 60px;
        height: 60px;
        border-radius: 7px;
    }

    .data-center i {
        font-size: 1.1rem;
    }

    .rack {
        width: 10px;
        height: 22px;
    }

    .contact-content {
        gap: 1rem;
    }

    .contact-item i {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 0.7rem;
    }

    .highlight {
        font-size: 1rem;
        padding: 0 2px;
    }

    .mining-animation {
        width: 38px;
        height: 38px;
    }

    .mining-particles {
        border-width: 1px;
    }

    .features,
    .app-download,
    .about,
    .contact {
        padding: 1.2rem 0 0.7rem 0;
    }

    .footer {
        padding: 0.7rem 0 0.3rem 0;
    }
}

/* Screenshot Slider Styles */
.screenshot-slider {
    position: relative;
    width: 280px;
    height: 560px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-images {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: #222;
}

.screenshot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.screenshot.active {
    opacity: 1;
    z-index: 2;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: #f7931a;
    color: #fff;
}

.slider-btn.prev {
    left: -50px;
}

.slider-btn.next {
    right: -50px;
}

@media (max-width: 768px) {
    .screenshot-slider {
        width: 200px;
        height: 400px;
    }

    .slider-btn.prev {
        left: -30px;
    }

    .slider-btn.next {
        right: -30px;
    }
}

@media (max-width: 480px) {
    .screenshot-slider {
        width: 120px;
        height: 240px;
    }

    .slider-btn.prev {
        left: -20px;
    }

    .slider-btn.next {
        right: -20px;
    }
}

/* APK Download Section */
.apk-download {
    padding: 4rem 0 5rem 0;
    background: #f8f9fa;
    text-align: center;
}

.apk-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.apk-content p {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.apk-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: #43a047;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(67, 160, 71, 0.15);
    margin-bottom: 1rem;
}

.apk-btn i {
    font-size: 2rem;
}

.apk-btn:hover {
    background: #388e3c;
    transform: translateY(-2px) scale(1.04);
}

.apk-note {
    color: #888;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .apk-content h2 {
        font-size: 1.5rem;
    }

    .apk-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

.site-logo {
    height: 40px;
    width: 40px;
    object-fit: contain;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.footer-logo .site-logo {
    height: 36px;
    width: 36px;
    margin-right: 0.5rem;
}

.app-logo {
    display: block;
    margin: 0 auto 1.5rem auto;
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
}

.highlight {
    color: #f7931a;
    font-weight: 700;
    background: linear-gradient(90deg, #fffbe6 60%, #ffe0b2 100%);
    padding: 0 4px;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(247, 147, 26, 0.08);
    display: inline-block;
}

.hero-logo-img {
    display: block;
    margin: 0 auto 1.2rem auto;
    width: 120px;
    height: 120px;
    max-width: 40vw;
    max-height: 40vw;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(247, 147, 26, 0.13);
    background: #fffbe6;
}

@media (max-width: 480px) {
    .hero-logo-img {
        width: 48px;
        height: 48px;
        max-width: 22vw;
        max-height: 22vw;
        border-radius: 12px;
        margin-bottom: 0.7rem;
    }
}

.iphone-frame {
    position: relative;
    width: 320px;
    height: 640px;
    background: #222;
    border-radius: 38px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(103, 126, 234, 0.08);
    border: 6px solid #222;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iphone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 20px;
    background: #111;
    border-radius: 0 0 16px 16px;
    z-index: 2;
}

.iphone-btn.left {
    position: absolute;
    left: -7px;
    top: 90px;
    width: 5px;
    height: 60px;
    background: #444;
    border-radius: 3px;
}

.iphone-btn.right {
    position: absolute;
    right: -7px;
    top: 180px;
    width: 5px;
    height: 40px;
    background: #444;
    border-radius: 3px;
}

.iphone-btn.right2 {
    position: absolute;
    right: -7px;
    top: 240px;
    width: 5px;
    height: 24px;
    background: #444;
    border-radius: 3px;
}

.iphone-inner {
    position: absolute;
    top: 28px;
    left: 16px;
    right: 16px;
    bottom: 28px;
    border-radius: 28px;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iphone-frame .screenshot-slider {
    position: static;
    width: 100%;
    height: 100%;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
}

.iphone-frame .slider-images,
.iphone-frame .screenshot {
    border-radius: 0;
}

.iphone-frame .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

.iphone-frame .slider-btn.prev {
    left: 10px;
}

.iphone-frame .slider-btn.next {
    right: 10px;
}

.iphone-frame .slider-btn:hover {
    background: #f7931a;
    color: #fff;
}

@media (max-width: 768px) {
    .iphone-frame {
        width: 200px;
        height: 400px;
        border-radius: 18px;
    }

    .iphone-notch {
        width: 60px;
        height: 10px;
        border-radius: 0 0 6px 6px;
        top: 4px;
    }

    .iphone-inner {
        top: 6px;
        left: 3px;
        right: 3px;
        bottom: 6px;
        border-radius: 10px;
    }

    .iphone-btn.left {
        top: 40px;
        height: 30px;
        width: 3px;
    }

    .iphone-btn.right {
        top: 80px;
        height: 18px;
        width: 3px;
    }

    .iphone-btn.right2 {
        top: 110px;
        height: 10px;
        width: 3px;
    }
}

.download-btn.ios {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-title {
    text-align: center;
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: #333;
    letter-spacing: 0.5px;
}

.about-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(247, 147, 26, 0.13);
    background: #fffbe6;
    border: 1.5px solid #fff;
}

.download-buttons {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 0.5rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 1.7rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.08rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(103, 126, 234, 0.07);
    border: none;
}

.download-btn.android {
    background: linear-gradient(90deg, #f7931a 60%, #ffb347 100%);
    color: #fff;
}

.download-btn.android:hover {
    background: linear-gradient(90deg, #ffb347 0%, #f7931a 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}

.download-btn.ios {
    background: linear-gradient(90deg, #444 60%, #888 100%);
    color: #fff;
    opacity: 0.7;
    cursor: not-allowed;
}

.download-btn.ios:hover {
    background: linear-gradient(90deg, #888 0%, #444 100%);
    color: #fff;
}

.blog-main {
    padding-top: 80px;
}

.blog-section {
    max-width: 900px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(103, 126, 234, 0.08);
    padding: 2.2rem 1.2rem;
}

.blog-back {
    color: #f7931a;
    text-decoration: underline;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.2rem;
}

.blog-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
    color: #333;
}

.blog-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem 0;
    color: #f7931a;
    text-align: center;
}

.blog-meta {
    color: #888;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.blog-img {
    width: 120px;
    height: 120px;
    border-radius: 18px;
    margin: 1.2rem 0;
    box-shadow: 0 2px 8px rgba(247, 147, 26, 0.13);
    display: block;
}

.blog-p {
    color: #555;
    font-size: 1.08rem;
    margin-bottom: 1.1rem;
}

.blog-h2 {
    font-size: 1.3rem;
    color: #f7931a;
    margin-top: 2rem;
    margin-bottom: 0.7rem;
    font-weight: 700;
}

.blog-ul,
.blog-ol {
    color: #555;
    margin-bottom: 1.2rem;
    padding-left: 1.2rem;
}

.blog-cta {
    margin-top: 2rem;
    color: #333;
    font-weight: 600;
}

.blog-link {
    color: #f7931a;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .blog-section {
        padding: 0.7rem 0.2rem;
        border-radius: 13px;
    }

    .blog-title {
        font-size: 1.1rem;
        margin-bottom: 0.7rem;
    }

    .blog-img {
        width: 60px;
        height: 60px;
        border-radius: 8px;
        margin: 0.7rem 0;
    }

    .blog-h2 {
        font-size: 1rem;
        margin-top: 1.1rem;
    }
}

/* Careers Page Styles */
.careers-main {
    padding-top: 80px;
}

.careers-hero {
    text-align: center;
    padding: 2.5rem 0 1.5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.careers-hero-img {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.careers-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
}

.careers-hero-desc {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.careers-content {
    max-width: 900px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(103, 126, 234, 0.08);
    padding: 2.2rem 1.2rem;
}

.careers-h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.2rem;
}

.careers-h3 {
    font-size: 1.3rem;
    color: #f7931a;
    margin-top: 2rem;
}

.careers-ul {
    color: #555;
    margin-bottom: 1.2rem;
    font-size: 1.08rem;
    padding-left: 1.2rem;
}

.careers-p {
    color: #555;
    font-size: 1.08rem;
    margin-bottom: 1.1rem;
}

.careers-link {
    color: #f7931a;
    text-decoration: underline;
}

.careers-cta {
    margin-top: 2rem;
    color: #333;
    font-weight: 600;
}

@media (max-width: 600px) {
    .careers-content {
        padding: 1.2rem 0.5rem;
    }

    .careers-hero-title {
        font-size: 2rem;
    }

    .careers-hero-desc {
        font-size: 1rem;
    }
}

/* Blogger Feed Modern Styles */
#blogger-feed {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    padding: 0 1rem;
}

.blog-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(103, 126, 234, 0.10);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    width: 100%;
    max-width: 600px;
    transition: box-shadow 0.3s, transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.blog-card:hover {
    box-shadow: 0 8px 32px rgba(103, 126, 234, 0.18);
    transform: translateY(-4px) scale(1.02);
}

.blog-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.blog-card .blog-meta {
    font-size: 0.95rem;
    color: #f7931a;
    font-weight: 600;
    margin-bottom: 0.7rem;
}

.blog-card p {
    color: #555;
    font-size: 1.08rem;
    margin-bottom: 1.1rem;
}

.read-more {
    display: inline-block;
    background: linear-gradient(90deg, #667eea 60%, #764ba2 100%);
    color: #fff;
    font-weight: 600;
    padding: 0.6rem 1.3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(103, 126, 234, 0.10);
}

.read-more:hover {
    background: linear-gradient(90deg, #f7931a 60%, #ffb347 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}

.blog-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #333;
    letter-spacing: 0.5px;
}

@media (max-width: 600px) {
    #blogger-feed {
        gap: 1.2rem;
        padding: 0 0.2rem;
    }

    .blog-card {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }

    .blog-title {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
}

.load-more-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 20px auto;
    display: block;
}

.load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.load-more-container {
    text-align: center;
    margin: 30px 0;
}

.d-none {
    display: none !important;
}

.cloud-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: flex-start;
    margin: 1.2rem 0 1.2rem 0;
}

.cloud-cta .apk-btn {
    margin: 0;
    height: 48px;
    display: inline-flex;
    align-items: center;
    font-size: 1.15rem;
    padding-top: 0;
    padding-bottom: 0;
}

@media (max-width: 600px) {
    .cloud-cta {
        flex-direction: column;
        gap: 14px;
        align-items: stretch;
    }

    .cloud-cta .apk-btn,
    .cloud-cta .play-badge {
        width: 100%;
        justify-content: center;
    }
}

.play-badge {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.play-badge-img {
    background: transparent !important;
    height: 48px;
    width: auto;
    display: block;
}

.download-arrow {
    margin-left: 8px;
    font-size: 1.2em;
    vertical-align: middle;
}

.api-purchase {
    padding: 4rem 0 4rem 0;
    background: #f8f9fa;
    text-align: center;
}

.api-purchase h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.api-purchase p {
    color: #555;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.api-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    list-style: none;
    padding: 0;
}

.api-benefits li {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(103, 126, 234, 0.07);
    padding: 1rem 2rem;
    font-size: 1.08rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 220px;
}

.api-benefits i {
    color: #f7931a;
    font-size: 1.3rem;
}

.api-purchase-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    max-width: 400px;
    margin: 0 auto 1.2rem auto;
    background: #fff;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(67, 160, 71, 0.08);
}

.api-purchase-form label {
    font-weight: 600;
    color: #333;
    align-self: flex-start;
    margin-bottom: 0.2rem;
}

.api-purchase-form input,
.api-purchase-form select {
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    border: 1.5px solid #ddd;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    outline: none;
    transition: border 0.2s;
}

.api-purchase-form input:focus,
.api-purchase-form select:focus {
    border: 1.5px solid #f7931a;
}

.api-purchase-form .btn-primary {
    width: 100%;
    margin-top: 0.5rem;
}

.api-note {
    color: #888;
    font-size: 0.98rem;
    margin-top: 0.7rem;
}

@media (max-width: 600px) {
    .api-benefits {
        flex-direction: column;
        gap: 0.7rem;
    }

    .api-benefits li {
        min-width: 0;
        width: 100%;
        padding: 0.8rem 1rem;
    }

    .api-purchase-form {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }

    .api-purchase h2 {
        font-size: 1.2rem;
    }
}

.software-section {
    padding: 4rem 0 3rem 0;
    background: #fff;
    text-align: center;
}

.software-section h1 {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.section-lead {
    color: #555;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.software-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.software-card {
    background: #f8f9fa;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(67, 160, 71, 0.08);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    max-width: 320px;
    min-width: 220px;
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

.software-card:hover {
    box-shadow: 0 6px 24px rgba(247, 147, 26, 0.13);
    transform: translateY(-4px) scale(1.03);
}

.software-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(247, 147, 26, 0.10);
    background: #fffbe6;
}

.software-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #222;
}

.software-card p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0.7rem;
}

.software-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #43a047;
    margin-bottom: 0.7rem;
}

.software-card .btn-primary {
    width: 100%;
    margin-top: 0.3rem;
}

@media (max-width: 900px) {
    .software-grid {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }

    .software-card {
        max-width: 95vw;
        min-width: 0;
    }
}

.notice-bar {
    background: #fff3cd;
    color: #856404;
    font-weight: 600;
    text-align: center;
    padding: 1rem 0.5rem;
    font-size: 1.08rem;
    border-bottom: 2px solid #ffeeba;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    letter-spacing: 0.2px;
    z-index: 100;
}

.notice-bar i {
    color: #f7931a;
    font-size: 1.2em;
}

.notice-bar .notice-email {
    color: #f7931a;
    font-weight: 700;
    text-decoration: underline;
    margin-left: 4px;
    transition: color 0.2s;
}

.notice-bar .notice-email:hover {
    color: #d35400;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .notice-bar {
        font-size: 1.05rem;
        padding: 1rem 1.2rem 1rem 1.2rem;
        text-align: center;
        word-break: break-word;
        flex-direction: column;
        gap: 0.5rem;
    }

    .notice-bar .notice-email {
        display: inline-block;
        margin: 0.3rem auto 0 auto;
        word-break: break-all;
        font-size: 1.08rem;
    }
}

.app-download-bar {
    display: flex;
    gap: 22px;
    justify-content: center;
    align-items: center;
    background: #fff;
    box-shadow: 0 2px 12px rgba(67, 160, 71, 0.08);
    padding: 1.1rem 0.5rem 1.1rem 0.5rem;
    border-bottom: 1.5px solid #f8f9fa;
    z-index: 99;
    position: relative;
}

.app-download-bar .play-badge-img {
    height: 48px;
    width: auto;
    display: block;
    background: transparent;
}

.app-download-bar .apk-btn {
    margin: 0;
    height: 48px;
    display: inline-flex;
    align-items: center;
    font-size: 1.15rem;
    padding-top: 0;
    padding-bottom: 0;
}

@media (max-width: 600px) {
    .app-download-bar {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        padding: 0.7rem 1rem 0.7rem 1rem;
    }

    .app-download-bar .apk-btn,
    .app-download-bar .play-badge {
        width: 100%;
        justify-content: center;
    }
}

.app-free-note {
    background: #e8f5e9;
    color: #388e3c;
    font-weight: 600;
    text-align: center;
    padding: 0.8rem 0.5rem;
    font-size: 1.05rem;
    border-bottom: 1.5px solid #c8e6c9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    letter-spacing: 0.2px;
}

.app-free-note i {
    color: #43a047;
    font-size: 1.15em;
}

@media (max-width: 600px) {
    .app-free-note {
        font-size: 0.97rem;
        padding: 0.6rem 1rem;
    }
}

.api-note-warning {
    color: #d35400;
    font-weight: 600;
    margin-top: 0.5rem;
    font-size: 1.01rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.api-note-warning i {
    color: #e67e22;
    font-size: 1.1em;
}

.external-link-section {
    text-align: center;
    margin: 30px 0 10px 0;
}