:root {
    --primary-color: #03eb69;
    --secondary-color: #131316;
    --text-muted: #6c757d;
    --bg-light: #f9fbfd;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero — asset at public/build/website/img/home/home-hero-bg.webp */
.home-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 100px;
    text-align: center;
    color: #fff;
    background-color: #131316;
    background-image: linear-gradient(rgba(19, 19, 22, 0.72),
            rgba(19, 19, 22, 0.88)),
        url("/build/website/img/home/home-hero-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.home-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
}

.home-hero .floating-anim {
    animation: heroFloatSoft 8s ease-in-out infinite;
}

@keyframes heroFloatSoft {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.home-hero .section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    padding: 12px 24px;
    margin: 0 auto 28px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
}

.home-hero .premium-title {
    color: #fff;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.home-hero .premium-title span {
    color: var(--primary-color);
    text-shadow: 0 0 28px rgba(3, 235, 105, 0.4);
}

.home-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.65;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .home-hero {
        min-height: 75vh;
        padding: 120px 0 72px;
    }
}

.pwa-modal {
    z-index: 9999;
}

.section-premium {
    padding: 100px 0;
    position: relative;
}

.section-tag {
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.premium-title {
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 3rem;
    line-height: 1.2;
}

.img-premium-hold {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    display: inline-block;
    background: #fff;
}

.img-premium-hold img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-premium-hold:hover img {
    transform: scale(1.1);
}

.phone-frame-wrapper {
    position: relative;
    width: 260px;
    height: 530px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.phone-frame-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("/build/website/img/home/iphoness.webp");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 10;
}

.phone-frame-content {
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    z-index: 5;
    background: #000;
}

.phone-frame-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-frame-wrapper:hover .phone-frame-content img {
    transform: scale(1.1);
}

.img-premium-hold:hover {
    transform: scale(1.02);
}

.btn-premium-action {
    background: var(--primary-color);
    color: #fff;
    padding: 15px 35px;
    border-radius: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
}

.btn-premium-action:hover {
    background: #02d45e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(3, 235, 105, 0.2);
    color: #fff;
}

.btn-outline-premium {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 13px 35px;
    border-radius: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-premium:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(3, 235, 105, 0.2);
}

.btn-download-pulse {
    background: #131316;
    color: #03eb69 !important;
    padding: 15px 38px;
    border-radius: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 0 rgba(3, 235, 105, 0.4);
    animation: pulse-dark-green 2s infinite;
    border: 2px solid #03eb69;
    position: relative;
    z-index: 1;
}

.btn-download-pulse:hover {
    transform: translateY(-5px) scale(1.02);
    background: #03eb69;
    box-shadow: 0 15px 30px rgba(3, 235, 105, 0.3);
    color: #131316 !important;
    animation: none;
    text-decoration: none;
}

.btn-download-pulse i {
    font-size: 1.3rem;
}

@keyframes pulse-dark-green {
    0% {
        transform: scale(0.98);
        box-shadow: 0 0 0 0 rgba(3, 235, 105, 0.4);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(3, 235, 105, 0);
    }

    100% {
        transform: scale(0.98);
        box-shadow: 0 0 0 0 rgba(3, 235, 105, 0);
    }
}

.team-card-premium {
    background: #fff;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

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

.team-card-premium .thumb {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    border: 4px solid var(--primary-color);
    padding: 5px;
    background: #fff;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card-premium:hover .thumb {
    transform: scale(1.15) rotate(5deg);
}

.team-card-premium .said-p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
    font-weight: 500;
}

.team-card-premium .bulcks {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.feature-card-premium {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.feature-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #f0fff7;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-smooth);
}

.feature-icon-wrapper img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-premium:hover .feature-icon-wrapper {
    background: var(--primary-color);
    transform: scale(1.1) rotate(90deg);
}

.feature-card-premium:hover .feature-icon-wrapper img {
    filter: brightness(0) invert(1);
    transform: scale(1.2);
}

.pwa-modal .modal-content {
    background: #131316;
    border: none;
    border-radius: 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.pwa-modal .modal-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--primary-color);
    z-index: 11;
}

.pwa-modal .modal-header {
    border: none;
    justify-content: center;
    padding: 40px 40px 10px;
}

.pwa-modal .modal-title {
    color: #fff;
    font-weight: 900;
    font-size: 28px;
    text-align: center;
    letter-spacing: -0.5px;
}

.pwa-modal .modal-body {
    padding: 20px 40px 40px;
}

.pwa-step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 20px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pwa-step:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.pwa-step:last-child {
    margin-bottom: 0;
}

.pwa-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.pwa-logo-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    border: 1px solid var(--primary-color);
    flex-shrink: 0;
    overflow: hidden;
}

.pwa-text {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

.pwa-text b {
    color: #fff;
    font-weight: 700;
}

.pwa-step-label {
    font-weight: 800;
    margin-right: 8px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 2px;
}

.pwa-close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    z-index: 12;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.pwa-close-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(90deg);
}

/* Floating Particles for Animation Section */
.floating-elements-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(5px);
    animation: particleFloat 10s infinite ease-in-out;
}

.p1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.p2 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 10%;
    animation-delay: -3s;
}

.p3 {
    width: 80px;
    height: 80px;
    bottom: 10%;
    left: 20%;
    animation-delay: -5s;
}

@keyframes particleFloat {

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

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.3;
    animation: iconFloat 8s infinite ease-in-out;
}

.floating-icon img {
    width: 100%;
    height: 100%;
}

.icon-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.icon-2 {
    top: 40%;
    right: 20%;
    animation-delay: -2s;
    width: 30px;
    height: 30px;
}

.icon-3 {
    bottom: 25%;
    right: 40%;
    animation-delay: -4s;
    width: 25px;
    height: 25px;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(20deg);
    }
}

.img-animate {
    position: relative;
    z-index: 1;
}

[class^="ah-img-"] {
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transition: all 0.5s ease;
}

[class^="ah-img-"]:hover {
    filter: drop-shadow(0 15px 30px rgba(3, 235, 105, 0.2));
    transform: translateY(-5px) scale(1.02);
}

.home-hero {
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("/build/website/img/home/home-hero-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 220px 0 150px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.home-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.home-hero .premium-title {
    color: #fff;
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.home-hero .premium-title span {
    display: inline-block;
    background: linear-gradient(135deg, #03eb69 0%, #02d45e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 5px 15px rgba(3, 235, 105, 0.3));
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.floating-anim {
    animation: floating 6s ease-in-out infinite;
}

.home-hero .section-tag {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 8px 25px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-hero .section-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(3, 235, 105, 0.2);
}

.home-hero p {
    max-width: 850px;
    margin: 0 auto 50px;
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .home-hero {
        padding: 240px 0 140px;
    }

    .home-hero .premium-title {
        font-size: 2.8rem;
    }

    .home-hero p {
        font-size: 1.1rem;
    }
}

.dashboards {
    background: #131316;
    color: #fff;
    padding: 100px 0;
}

.dashboards .interface {
    background: rgba(19, 19, 22, 0.85) !important;
    backdrop-filter: blur(20px) !important;
}

.dashboards .main-heading-community,
.dashboards .dashboards-show-heading h2 {
    color: #fff !important;
}

.dashboards .dashboard-img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.netflix-video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.netflix-video-modal.active {
    width: 100vw;
    height: 100vh;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1;
}

.netflix-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.netflix-modal-content {
    position: relative;
    width: 90%;
    max-width: 1400px;
    margin: auto;
    z-index: 100000;
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.netflix-close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(20, 20, 20, 0.8);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease;
    z-index: 100001;
    backdrop-filter: blur(10px);
}

.netflix-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.1);
}

.netflix-close-btn svg {
    width: 24px;
    height: 24px;
}

.netflix-video-container {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    aspect-ratio: 16/9;
}

.netflix-video {
    width: 100% !important;
    height: 100% !important;
    display: block;
    object-fit: contain;
    background: #000;
}

.netflix-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0,
            rgba(0, 0, 0, 0.1) 50%,
            rgba(0, 0, 0, 0.5) 100%);
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: all;
    z-index: 2;
}

.netflix-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.netflix-play-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s infinite;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.netflix-play-btn:hover {
    transform: scale(1.15);
    animation: none;
}

.netflix-play-btn svg circle {
    transition: all 0.3s ease;
}

.netflix-play-btn:hover svg circle {
    fill: rgba(255, 255, 255, 0.2);
    stroke: #03eb69;
}

.netflix-video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /* top: 10; */
    padding: 40px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0,
            rgba(0, 0, 0, 0.7) 50%,
            transparent 100%);
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.netflix-video-container:hover .netflix-video-info {
    opacity: 1;
    transform: translateY(0);
}

.netflix-video-info h3 {
    top: 20px;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.netflix-video-info p {
    font-size: 14px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }

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

@keyframes pulse {

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

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@media (max-width: 768px) {
    .netflix-modal-content {
        width: 95%;
    }

    .netflix-close-btn {
        top: -45px;
        width: 40px;
        height: 40px;
    }

    .netflix-video-info {
        padding: 20px;
    }

    .netflix-video-info h3 {
        font-size: 16px;
    }

    .netflix-video-info p {
        font-size: 12px;
    }

    .netflix-play-btn svg {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .netflix-modal-content {
        width: 100%;
    }

    .netflix-video-container {
        border-radius: 0;
    }

    .netflix-close-btn {
        top: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.7);
    }

    .netflix-play-btn svg {
        width: 50px;
        height: 50px;
    }
}

.netflix-video.loading {
    background: #000 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 50 50"><circle cx="25" cy="25" r="20" fill="none" stroke="%2303EB69" stroke-width="3" stroke-dasharray="31.4 31.4" stroke-linecap="round"><animateTransform attributeName="transform" type="rotate" from="0 25 25" to="360 25 25" dur="1s" repeatCount="indefinite"/></circle></svg>') center no-repeat;
}

.frames {
    background: #f0fff7;
    padding: 12px 30px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(3, 235, 105, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.frames:hover {
    background: var(--primary-color);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 10px 25px rgba(3, 235, 105, 0.25);
}

.frames:hover p {
    color: #fff;
}

.frames:hover img {
    filter: brightness(0) invert(1);
    transform: translateX(8px);
}

.frames p {
    font-weight: 800;
    color: var(--secondary-color);
    transition: color 0.4s;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.frames span {
    background: var(--primary-color);
    color: #fff;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    margin-right: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 0 2px 5px rgba(3, 235, 105, 0.3);
}

.frames:hover span {
    background: #fff;
    color: var(--primary-color);
}

.frames img {
    transition: all 0.4s;
    width: 18px;
}

/* Google Play Button Styling */
.btn-google-play {
    background: #000;
    border: 2px solid var(--primary-color);
    color: #fff;
    padding: 12px 28px;
    border-radius: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-google-play::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-google-play:hover::before {
    left: 100%;
}

.btn-google-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
}

.google-play-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.google-play-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.google-play-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.9;
}

.google-play-store {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    color: #fff;
}

@media (max-width: 768px) {
    .btn-google-play {
        padding: 10px 22px;
        gap: 10px;
    }

    .google-play-icon {
        width: 24px;
        height: 24px;
    }

    .google-play-label {
        font-size: 0.6rem;
    }

    .google-play-store {
        font-size: 1rem;
    }
}