:root {
    --bg-color: #0d1117;
    --card-bg: rgba(22, 27, 34, 0.7);
    --primary: #00f2ea;
    --secondary: #ff0050;
    --text-color: #e6edf3;
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

body {
    font-family: 'Outfit', sans-serif;
    /* background-color: var(--bg-color); */
    color: var(--text-color);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Dynamic Background */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 10% 20%, rgba(0, 242, 234, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(255, 0, 80, 0.1) 0%, transparent 40%);
    z-index: -1;
}

/* Navbar */
.navbar {
    padding: .5rem 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: var(--glass-border);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.brand {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #212529;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.brand i {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand span {
    font-weight: 300;
    color: rgba(255,255,255,0.7);
}

/* Main Content */
main {
    /* flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0; */
}

/* Card */


.glass-card-wrap
{
    position: relative;
    padding: 50px 0;
background:
  radial-gradient(circle at 15% 20%, rgba(0, 242, 234, 0.22) 0%, transparent 50%),
  radial-gradient(circle at 50% 50%, rgba(120, 90, 255, 0.18) 0%, transparent 45%),
  radial-gradient(circle at 90% 80%, rgba(255, 0, 80, 0.22) 0%, transparent 50%),
  #000;

}

.glass-card-wrap::before
{
    content: "";
        position: absolute;
    width: 100%;
    height: 100%;
    top:0px;
    left: 0px;
    /* background-color: #000;
        background: radial-gradient(circle at 10% 20%, rgba(0, 242, 234, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(255, 0, 80, 0.1) 0%, transparent 40%); */
              
}

.glass-card {
    background: rgb(22 27 34 / 40%);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    border: var(--glass-border);
    padding: 3rem;
    width: 100%;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    margin: auto;
}

.glass-card:hover {
    transform: translateY(-5px);
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #8b949e;
    margin-bottom: 2.5rem;
}

/* Input Group */
.input-group {
    position: relative;
    margin-bottom: 2rem;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 50px !important;
    background: rgba(13, 17, 23, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding-right: 120px;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 242, 234, 0.3);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 40px !important; 
    color: #fff;
    font-weight: 600;
    padding: 0 2rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.search-btn:hover {
    transform: scale(1.05);
}


.search-glass-card
{
    background: #323232
}

/* Result Card */
.video-preview {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    text-align: left;
}

.cover-img {
    width: 150px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    height: 296px;
    object-fit: cover;
}

.video-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
    line-height: 1.4;
}

.author {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: block;
}

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.btn-dl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), #00d2d3);
    color: #000;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-dl:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    text-align: center;
    padding: .5rem;
    color: #484f58;
    font-size: 0.9rem;
    border-top: var(--glass-border);
}

/* Utilities */
.alert {
    padding: 1rem;
    background: rgba(255, 0, 80, 0.1);
    border: 1px solid rgba(255, 0, 80, 0.3);
    border-radius: 10px;
    color: #ff6b8b;
    margin-bottom: 1.5rem;
}


.single-services {
    padding: 40px 30px;
    border: 1px solid #efefef;
    border-radius: 10px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}


.service-content h4{
    color: #212529;
        font-weight: bold;
}
.service-content p{
    color: #212529
}

.single-services:hover {
    box-shadow: 0px 2px 4px rgba(40, 41, 61, 0.04),
    0px 8px 16px rgba(96, 97, 112, 0.16);
}


.tiktok-guide {
    background: linear-gradient(135deg, #00f2ea, #ff0050);
    border-radius: 20px;
    padding: 40px;
    color: #fff;
}

.step-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    color: #ff0050;
    font-weight: bold;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card h5 {
    margin-bottom: 8px;
    font-weight: 600;
}

.step-card p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.6;
}



.features-section {
    background: #f8f9ff;
    padding: 60px 0;
}

.feature-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00f2ea, #ff0050);
    opacity: 0;
    transition: 0.35s;
    z-index: 0;
}

.feature-card:hover::before {
    opacity: 0.08;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00f2ea, #ff0050);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.feature-icon svg {
    width: 34px;
    height: 34px;
    stroke: #fff;
}

.feature-card h6 {
    font-weight: 600;
    margin-bottom: 10px;
        color: #212529;
}

.feature-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.mobile-section {

    background: linear-gradient(180deg, #ffffff, #f6f7ff);
}

.mobile-title {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 20px;
        color: #212529;
}

.step-box {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.step-badge {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #00f2ea, #ff0050);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-box p {
    margin: 0;
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}

.device-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    position: relative;
}

.device-card::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 26px;
    background: linear-gradient(135deg, #00f2ea, #ff0050);
    z-index: -1;
    opacity: 0.25;
}


/* Remove default Bootstrap focus & shadow */
.accordion-button:focus {
    box-shadow: none;
}

/* Default button */
.accordion-button {
    font-weight: 600;
    border-radius: 12px !important;
}

/* ACTIVE (OPEN) STATE */
.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #00f2ea, #ff0050);
    color: #fff;
}

/* Arrow icon white */
.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

/* Accordion item styling */
.accordion-item {
    border: none;
    margin-bottom: 15px;
        border-radius: 12px;
}

/* Body styling */
.accordion-body {
    background: #fff;
    border-radius: 0 0 12px 12px;
}


/* Responsive */
@media (max-width: 768px) {
    .video-preview {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .cover-img {
        width: 100%;
        max-width: 200px;
    }

    .brand {
    font-size: 20px;
    }

    .glass-card-wrap
    {
       padding-left: 15px;
       padding-right: 15px;
    }

    .glass-card
    {
        padding: 1rem;
    }

    .step-card {

    align-items: center;
    flex-flow: column;
    text-align: center;
}

.mobile-title {

    font-size: 26px;

}

.tiktok-guide {

    padding: 20px;

}

.search-btn
{
    padding: 0 1rem;
}

}


