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

/* GLOBAL */
html, body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    position: relative;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    color: #fff;
    display: flex;
    flex-direction: column;
    -webkit-overflow-scrolling: touch;
}

/* HEADER */
.header {
    background: rgba(0,0,0,0.5);
    padding: 1rem;
    text-align: center;
}

.logo {
    max-width: 150px;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(79, 255, 255, 0.3);
    transition: transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.logo:hover {
    transform: scale(1.05);
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* NAVIGATION */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem;
    background: rgba(0,0,0,0.3);
    margin-bottom: 2rem;
}

.nav-links a {
    color: #4ff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: rgba(79, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* SHOWCASE SECTION */
.showcase-section {
    text-align: center;
    margin: 3rem auto;
    max-width: 1200px;
    padding: 2rem;
}

.showcase-title {
    color: #4ff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.showcase-subtitle {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.bot-link {
    color: #4ff !important;
    text-decoration: none;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 300px));
    gap: 2rem;
    justify-content: center;
    margin: 2rem auto;
}

.video-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.video-container {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-container:hover {
    transform: translateY(-10px);
}

.video-wrapper {
    position: relative;
    padding-bottom: 177.78%; /* 9:16 */
    background: rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
}

.video-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.1);
    z-index: 1;
}

.video-wrapper img {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-info {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
}

.step-number {
    color: #4ff;
    font-size: 1.5rem;
}

.step-title {
    color: #4ff;
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.try-now-button {
    display: inline-block;
    background: linear-gradient(45deg, #4ff, #4f9);
    color: #1a1a2e;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.2rem;
    text-decoration: none;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.try-now-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(79,255,255,0.4);
}

/* ABOUT SECTION */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
    flex: 1;
}

.about-section {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.about-section h2 {
    text-align: center;
    color: #4ff;
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
}

.about-section p {
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.platform-category {
    color: #4ff;
    margin-top: 1rem;
}

.check-mark {
    color: #4ff;
    margin-right: 0.3rem;
}

/* DISCLAIMER BOX */
.disclaimer-box {
    border: 1px solid rgba(79,255,255,0.3);
    background: rgba(79,255,255,0.05);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

/* FAQ SECTION */
.faq-section {
    margin-top: 3rem;
}

.faq-question {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(5px);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #4ff;
}

.faq-question .icon {
    transition: transform 0.3s ease;
}

.faq-question.active .icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    border-left: 2px solid rgba(79,255,255,0.3);
    padding: 0 1rem;
}

.faq-question.active + .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding: 1rem;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 2rem;
    background: rgba(0,0,0,0.3);
    margin-top: auto;
}

footer p {
    color: #4ff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .container {
        padding: 1rem;
    }

    .about-section {
        padding: 1rem;
        margin: 1rem;
    }

    .try-now-button {
        width: 90%;
        display: block;
        margin: 1.5rem auto;
        font-size: 1.1rem;
    }
}

@media (min-width: 768px) {
    .try-now-button {
        font-size: 1.4rem;
        padding: 1.2rem 2.5rem;
    }

    .showcase-title {
        font-size: 3rem;
    }
}

.about-section ul {
    margin: 1rem 0 2rem;
    padding-left: 1.2rem;
}

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

.trust-proof {
    margin: 1rem 0 2.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.about-section p,
.about-section li {
    text-align: center; 
}

.about-section ul {
    list-style-position: inside; 
    padding-left: 0; 
    margin: 1rem auto 2rem; 
    max-width: fit-content; 
}

.disclaimer-box p,
.disclaimer-box .platform-category {
    text-align: center;
}

.no-signup-text {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}

/* COPYRIGHT EMAIL BUTTON */
.copyright-button-wrapper {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0 2.5rem;
}

.copyright-button {
    background: linear-gradient(45deg, #4ff, #4f9);
    color: #1a1a2e;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(79,255,255,0.35);
    transition: all 0.3s ease;
}

.copyright-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(79,255,255,0.55);
}
