:root {
    --primary-color: #000000;
    /* Pure Black Background */
    --secondary-color: #0a0a0a;
    /* Dark Gray for sections */
    --accent-color: #00eaff;
    /* Electric Cyan/Blue - Vivid & Bold */
    --accent-secondary: #ff0055;
    /* Neon Pink for highlights */
    --text-color: #ffffff;
    --text-muted: #cccccc;
    --font-main: 'Inter', 'Helvetica Neue', sans-serif;
    --transition-speed: 0.3s;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(0, 234, 255, 0.5);
}

h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    text-align: center;
    position: relative;
    display: block;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 15px auto 0;
    box-shadow: 0 0 10px var(--accent-color);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Utilities */
.container {
    max-width: 1400px;
    /* Wider container for bold look */
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, var(--accent-color), #0077ff);
    color: #000;
    font-weight: 700;
    border-radius: 50px;
    transition: all var(--transition-speed) ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 0 20px rgba(0, 234, 255, 0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 234, 255, 0.6);
    color: #fff;
}

.section-padding {
    padding: 100px 0;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-color);
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 234, 255, 0.3);
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8)), url('assets/images/hero_aquarium_luxury_1763582300435.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 900px;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    display: block;
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 234, 255, 0.5);
}

/* About Section */
.about {
    background-color: #050505;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 234, 255, 0.05) 0%, transparent 60%);
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 234, 255, 0.1);
    border: 1px solid var(--glass-border);
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    background: var(--glass-bg);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

/* Services Section */
.services {
    background-color: var(--primary-color);
}

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

.service-card {
    background: #0a0a0a;
    padding: 50px 30px;
    border: 1px solid var(--glass-border);
    transition: all var(--transition-speed);
    text-align: center;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-speed);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: #111;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: linear-gradient(45deg, var(--accent-color), #0077ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

/* Gallery Section */
.gallery {
    padding-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 350px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    color: var(--accent-color);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.gallery-item:hover .overlay h3 {
    transform: translateY(0);
}

/* News/Articles Section */
.news {
    background: #080808;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.news-card {
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    transition: transform var(--transition-speed);
}

.news-card:hover {
    transform: translateY(-10px);
}

.news-img {
    height: 200px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card:hover .news-img img {
    transform: scale(1.1);
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.read-more {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    gap: 10px;
}

/* Contact Section */
.contact {
    background: linear-gradient(to right, #000000, #050505);
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
    background: var(--glass-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    min-width: 250px;
    transition: transform 0.3s;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.contact-item h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-item p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.social-links {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-btn {
    padding: 12px 30px;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
}

.social-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 234, 255, 0.4);
}

/* Footer */
footer {
    background: #000;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #111;
}

footer p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.7;
}

/* Article Page Specifics */
.article-page {
    padding-top: 120px;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    background: #111;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.article-content img {
    width: 100%;
    border-radius: 5px;
    margin: 30px 0;
}

.article-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    text-shadow: none;
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

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

    .nav-links {
        display: none;
        /* Simplified for now */
    }

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

    .contact-info {
        flex-direction: column;
        align-items: center;
    }
}
/* Hero Features Highlight */
.hero-features {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid var(--accent-color);
    display: inline-block;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgba(0, 234, 255, 0.2);
    animation: fadeInUp 1.2s ease-out;
}

.hero-features strong {
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0 5px;
    text-shadow: 0 0 10px rgba(0, 234, 255, 0.6);
}

@media (max-width: 768px) {
    .hero-features {
        font-size: 1rem;
        padding: 10px 20px;
        width: 90%;
    }
    .hero-features strong {
        font-size: 1.2rem;
    }
}

/* Strength Section */
.strength {
    background-color: #050505;
}

.strength-block {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.strength-block.reverse {
    flex-direction: row-reverse;
}

.strength-text {
    flex: 1;
}

.strength-text h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.strength-image {
    flex: 1;
}

.strength-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 234, 255, 0.1);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
}

.strength-image img:hover {
    transform: scale(1.02);
}

.strength-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.strength-card {
    background: #111;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--glass-border);
}

.strength-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.strength-card img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .strength-block, .strength-block.reverse {
        flex-direction: column;
    }
    .strength-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials & Partners */
.testimonials {
    background-color: #000;
    background-image: radial-gradient(circle at 50% 50%, #0a1a2a 0%, #000 70%);
}

.partners-banner {
    text-align: center;
    margin-bottom: 60px;
}

.partners-banner img {
    max-width: 100%;
    opacity: 0.8;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.subsection-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 40px;
    margin-top: 60px;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.video-card {
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 234, 255, 0.2);
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 234, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 24px;
    transition: all 0.3s;
}

.video-thumbnail:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
}

.video-card p {
    padding: 15px;
    text-align: center;
    color: var(--text-color);
    font-weight: 500;
}

/* Reviews */
.reviews-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.review-card-img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* FAQ Section */
.faq {
    background-color: #080808;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    transition: background 0.3s;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.faq-item p {
    color: #ccc;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Quote Form Section */
.quote-section {
    background: linear-gradient(135deg, #0a1a2a 0%, #000 100%);
    border-top: 1px solid var(--glass-border);
}

.quote-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(0, 234, 255, 0.1);
}

.quote-text {
    flex: 1;
    min-width: 300px;
}

.quote-text h2 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.quote-text h2::after {
    margin: 15px 0 0;
}

.quote-benefits {
    list-style: none;
    margin-top: 20px;
}

.quote-benefits li {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.quote-form {
    flex: 1;
    min-width: 300px;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--accent-color);
}

.btn-block {
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
}

/* Floating Action Buttons */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fab-btn {
    display: flex;
    align-items: center;
    background: var(--accent-color);
    color: #000;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 234, 255, 0.4);
    transition: transform 0.3s, width 0.3s;
    overflow: hidden;
    width: 60px;
    white-space: nowrap;
}

.fab-btn:hover {
    width: 140px;
    transform: scale(1.05);
}

.fab-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.fab-text {
    opacity: 0;
    transition: opacity 0.3s;
}

.fab-btn:hover .fab-text {
    opacity: 1;
}

.phone-btn {
    background: #00eaff;
}

.wechat-btn {
    background: #09bb07;
    color: #fff;
    box-shadow: 0 5px 15px rgba(9, 187, 7, 0.4);
}

@media (max-width: 768px) {
    .quote-container {
        flex-direction: column;
        padding: 20px;
    }
    .quote-text h2 {
        font-size: 2rem;
    }
    .fab-container {
        bottom: 20px;
        right: 20px;
    }
    .fab-btn {
        width: 50px;
        padding: 10px;
    }
    .fab-btn:hover {
        width: 130px;
    }
}

/* Scenario Cases */
.scenarios {
    background: #0c0c0c;
}

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.scenario-card {
    background: #151515;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
}

.scenario-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.scenario-img {
    position: relative;
    height: 250px;
}

.scenario-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scenario-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.scenario-content {
    padding: 25px;
}

.scenario-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
}

.scenario-detail p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.scenario-detail i {
    color: var(--accent-color);
    margin-right: 5px;
}

/* Testimonials Slider */
.testimonials-slider {
    overflow: hidden;
    margin-top: 50px;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    min-width: 350px;
    max-width: 350px;
    border: 1px solid var(--glass-border);
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--accent-color), #0077ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-right: 15px;
}

.details h4 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.details span {
    color: #888;
    font-size: 0.9rem;
}

.review-text {
    color: #ddd;
    font-style: italic;
    line-height: 1.6;
}

/* Fix News Image Aspect Ratio */
.news-card img {
    width: 100%;
    height: 250px; /* Fixed height */
    object-fit: cover; /* Crop to fit */
    display: block;
}

/* --- New Styles for Updates --- */

/* Logo Image */
.logo-img {
    height: 50px;
    width: auto;
    vertical-align: middle;
}

/* Contact Section Background */
#contact {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95)), url('assets/images/commercial_aquarium_mall_1763582311999.png') no-repeat center center/cover !important;
    background-attachment: fixed;
}

/* Testimonial Marquee */
.testimonials-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.testimonial-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 60s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Override for Hero Subtitle - Make it more prominent */
.hero-subtitle {
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    text-shadow: 0 0 20px rgba(0, 234, 255, 0.8) !important;
    margin-bottom: 2rem !important;
}

/* Social Media Button Styling */
.social-links {
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    padding: 12px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
    color: white; /* Default text color */
}

.social-btn i {
    font-size: 1.5rem; /* Magnify logos */
}

/* Brand Colors */
.btn-douyin {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #25F4EE; /* Douyin Cyan border */
    box-shadow: 0 0 5px rgba(37, 244, 238, 0.3);
}
.btn-douyin:hover {
    background: black;
    border-color: #FE2C55; /* Douyin Red on hover */
    box-shadow: 0 0 15px rgba(254, 44, 85, 0.5);
    transform: translateY(-3px);
}

.btn-xiaohongshu {
    background: rgba(255, 36, 66, 0.1);
    border: 1px solid #FF2442;
    color: #FF2442;
}
.btn-xiaohongshu:hover {
    background: #FF2442;
    color: white;
    box-shadow: 0 0 15px rgba(255, 36, 66, 0.5);
    transform: translateY(-3px);
}

.btn-wechat {
    background: rgba(7, 193, 96, 0.1);
    border: 1px solid #07C160;
    color: #07C160;
}
.btn-wechat:hover {
    background: #07C160;
    color: white;
    box-shadow: 0 0 15px rgba(7, 193, 96, 0.5);
    transform: translateY(-3px);
}

.btn-kuaishou {
    background: rgba(255, 72, 0, 0.1);
    border: 1px solid #FF4800;
    color: #FF4800;
}
.btn-kuaishou:hover {
    background: #FF4800;
    color: white;
    box-shadow: 0 0 15px rgba(255, 72, 0, 0.5);
    transform: translateY(-3px);
}

.btn-bilibili {
    background: rgba(0, 161, 214, 0.1);
    border: 1px solid #00A1D6;
    color: #00A1D6;
}
.btn-bilibili:hover {
    background: #00A1D6;
    color: white;
    box-shadow: 0 0 15px rgba(0, 161, 214, 0.5);
    transform: translateY(-3px);
}

/* Hero Action Row Alignment */
.hero-action-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.hero-features {
    margin: 0; /* Remove default margins */
    font-size: 1.2rem; /* Ensure readable size */
    line-height: 1.5;
}

/* Adjust button to match text visual weight/height if needed */
.hero-action-row .btn {
    padding: 12px 35px; /* Adjust padding to match height */
    font-size: 1.2rem; /* Match text font size */
    height: auto; /* Let padding define height */
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}
