body, .bodyme, .container, .welcome-section, .login-card, .features, .feature, .feature-block, .social-links-section, .social-tile, .signup-btn, .signup-btn0mobile, .form-group, .form-group label, .form-group input, .forgot-password, .login-btn, .login-buttons, .half_button {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif !important;
}

.bodyme {
    font-family: 'Dancing Script', cursive;
    background: linear-gradient(135deg, rgba(3, 173, 216, 0.1), rgba(2, 119, 160, 0.1)), url("images/download.svg") center center / cover no-repeat fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.bodyme::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
    position: relative;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.welcome-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes neonPulse {
    0% {
        box-shadow: 0 0 16px 4px #00eaff, 0 0 32px 8px #00eaff80;
    }
    20% {
        box-shadow: 0 0 24px 8px #00ffea, 0 0 48px 16px #00ffea80;
    }
    40% {
        box-shadow: 0 0 32px 12px #a259ff, 0 0 64px 24px #a259ff80;
    }
    60% {
        box-shadow: 0 0 40px 16px #ff2fd6, 0 0 80px 32px #ff2fd680;
    }
    80% {
        box-shadow: 0 0 32px 12px #ff7aff, 0 0 64px 24px #ff7aff80;
    }
    100% {
        box-shadow: 0 0 16px 4px #00eaff, 0 0 32px 8px #00eaff80;
    }
}

.welcome-logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 12px;
    background: rgba(0,0,0,0.01);
    transition: filter 0.4s ease;
    filter: drop-shadow(0 0 15px rgba(0, 234, 255, 0.4));
}

.welcome-logo:hover {
    filter: drop-shadow(0 0 35px rgba(0, 234, 255, 0.8));
}

.welcome-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 60px;
    line-height: 1.2;
    background: linear-gradient(135deg, #03add8, #0277a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.feature {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: transform 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.1);
}

.like-icon {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    color: #e74c3c;
}

.follow-icon {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    color: #27ae60;
}

.video-icon {
    background: linear-gradient(135deg, #ffecd2, #fcb69f);
    color: #f39c12;
}

.feature h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 0.95rem;
}

.signup-btn,
.signup-btn0mobile {
    background: linear-gradient(135deg, #03add8, #0277a0);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.signup-btn::after,
.signup-btn0mobile::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.signup-btn:hover::after,
.signup-btn0mobile:hover::after {
    transform: translateX(0);
}

.signup-btn0mobile {
    padding: 8px 40px;
}

.signup-btn {
    margin-top: 30px;
}

.mobile-only {
    display: none;
}

@media screen and (max-width: 767px) {
    .mobile-only {
        display: block;
        width: 100%;
        margin-top: 10px;
    }
}

.language-center {
    padding: 10px 0 0 0;
}

.language-selector {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #7f8c8d;
    font-size: 0.9rem;
    cursor: pointer;
}

.login-card {
    width: 400px;
    max-width: 100%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.2);
}

.login-card h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 300;
}

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

.form-group label {
    display: block;
    color: #7c5dfa;
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(124, 93, 250, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(248, 249, 250, 0.8);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #03add8;
    background: white;
    box-shadow: 0 0 0 3px rgba(3, 173, 216, 0.1);
}

.forgot-password {
    color: #7c5dfa;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 30px;
    display: inline-block;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    background: #03add8;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 93, 250, 0.3);
}

.login-buttons {
    display: flex;
    gap: 10px;
}

.half_button {
    flex: 1;
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    background: linear-gradient(135deg, #03add8, #0277a0);
    color: white;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.half_button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.half_button:hover::after {
    transform: translateX(0);
}

@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: unset;
    }
    .login-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .features {
        grid-template-columns: 1fr;
    }
    .welcome-section {
        align-items: center;
        text-align: center;
    }
}

/* Social Links Section */
.social-links-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.social-tile {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.social-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.social-tile a {
    text-decoration: none;
    color: #2c3e50;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #03add8, #0277a0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.social-tile:hover .social-icon {
    transform: scale(1.1);
}

/* Features Section */
.features-section {
    margin: 40px 0;
}

.features-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

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

.feature-block {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-block:hover {
    transform: translateY(-5px);
}

.feature-block .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #03add8, #0277a0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.feature-block h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-block p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 15px;
}

.badge {
    display: inline-block;
    padding: 5px 15px;
    background: #f1f3f4;
    border-radius: 20px;
    color: #2c3e50;
    font-size: 0.8rem;
    font-weight: 600;
}

.vip-badge {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: white;
}

.age-badge {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

@media (max-width: 768px) {
    .social-links-section {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        grid-template-columns: 1fr 350px;
        gap: 40px;
        padding: 20px;
    }

    .welcome-section h1 {
        font-size: 2.8rem;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .welcome-logo {
        width: 100%;
        max-width: 578px;
        height: auto;
    }
}

@media (max-width: 992px) {
    .container {
        grid-template-columns: 1fr 400px;
        gap: 40px;
    }

    .welcome-logo {
        width: 100%;
        max-width: 578px;
        height: auto;
    }

    .welcome-section {
        order: 1;
    }

    .login-card {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .welcome-section h1 {
        font-size: 2.5rem;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bodyme {
        padding: 15px;
    }

    .container {
        grid-template-columns: 1fr 400px;
        gap: 30px;
    }

    .welcome-section h1 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

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

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

    .social-links-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .login-card {
        padding: 25px 20px;
    }

    .form-group input {
        padding: 12px;
    }

    .login-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .half_button {
        width: 100%;
    }

    .signup-btn {
        width: 100%;
        padding: 12px 20px;
    }

    .welcome-logo {
        width: 100%;
        max-width: 578px;
        height: auto;
    }
}

@media (max-width: 576px) {
    .bodyme {
        padding: 10px;
    }

    .welcome-section h1 {
        font-size: 2rem;
    }

    .social-links-section {
        grid-template-columns: 1fr;
    }

    .feature-block {
        padding: 20px;
    }

    .feature-block .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .login-card {
        padding: 20px 15px;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input {
        font-size: 0.9rem;
    }

    .forgot-password {
        font-size: 0.85rem;
    }

    .language-center {
        font-size: 0.9rem;
    }

    .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .welcome-logo {
        width: 100%;
        max-width: 578px;
        height: auto;
    }
}

/* Fix for very small screens */
@media (max-width: 360px) {
    .welcome-section h1 {
        font-size: 1.8rem;
    }

    .feature-block h3 {
        font-size: 1.1rem;
    }

    .feature-block p {
        font-size: 0.9rem;
    }

    .login-card {
        padding: 15px 10px;
    }
}

/* Ensure proper spacing on larger screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }

    .welcome-section h1 {
        font-size: 3.8rem;
    }

    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Fix for landscape orientation on mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .bodyme {
        padding: 10px;
    }

    .container {
        gap: 20px;
    }

    .welcome-section h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .features {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .feature-block {
        padding: 15px;
    }
}

/* Add smooth scrolling to the entire page */
html {
    scroll-behavior: smooth;
}

/* Add a subtle animation to the welcome section */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Refined Talkstime Article Section Styling */
#talkstime-article {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 50px;
    margin: 50px auto;
    max-width: 1000px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#talkstime-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(255, 255, 255, 0.2);
}

#talkstime-article header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(3, 173, 216, 0.1);
}

#talkstime-article h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
    background: linear-gradient(135deg, #03add8, #0277a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#talkstime-article h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin: 40px 0 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

#talkstime-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #03add8, #0277a0);
    border-radius: 4px;
    transition: width 0.3s ease;
}

#talkstime-article h2:hover::after {
    width: 120px;
}

#talkstime-article h3 {
    font-size: 1.6rem;
    color: #34495e;
    margin: 30px 0 20px;
    font-weight: 600;
}

#talkstime-article h4 {
    font-size: 1.3rem;
    color: #34495e;
    margin: 25px 0 15px;
    font-weight: 500;
}

#talkstime-article p {
    color: #5d6d7e;
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 1.15rem;
    letter-spacing: 0.3px;
}

#talkstime-article ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

#talkstime-article ul li {
    color: #5d6d7e;
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 1.15rem;
    line-height: 1.7;
    transition: transform 0.3s ease;
}

#talkstime-article ul li:hover {
    transform: translateX(5px);
}

#talkstime-article ul li::before {
    content: '•';
    color: #03add8;
    position: absolute;
    left: 0;
    font-size: 1.8rem;
    line-height: 1;
}

#talkstime-article strong {
    color: #2c3e50;
    font-weight: 600;
    background: linear-gradient(135deg, #03add8, #0277a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Enhanced Feature Sections */
.chat-features,
.security-features,
.chat-options,
.feature-list,
.guidelines {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    margin: 25px 0;
    border: 1px solid rgba(3, 173, 216, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-features:hover,
.security-features:hover,
.chat-options:hover,
.feature-list:hover,
.guidelines:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(3, 173, 216, 0.2);
}

/* Refined CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 40px;
}

.cta-button {
    background: linear-gradient(135deg, #03add8, #0277a0);
    color: white;
    padding: 18px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(3, 173, 216, 0.2);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0));
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(3, 173, 216, 0.3);
}

.cta-button:hover::after {
    transform: translateX(0);
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    #talkstime-article {
        padding: 35px 25px;
        margin: 30px 20px;
        border-radius: 20px;
    }

    #talkstime-article h1 {
        font-size: 2.2rem;
    }

    #talkstime-article h2 {
        font-size: 1.8rem;
    }

    #talkstime-article h3 {
        font-size: 1.4rem;
    }

    #talkstime-article p,
    #talkstime-article ul li {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 20px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 15px 25px;
    }

    .chat-features,
    .security-features,
    .chat-options,
    .feature-list,
    .guidelines {
        padding: 25px 20px;
    }
}

/* Refined Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-features,
.security-features,
.chat-options,
.feature-list,
.guidelines {
    animation: slideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.chat-features { animation-delay: 0.1s; }
.security-features { animation-delay: 0.2s; }
.chat-options { animation-delay: 0.3s; }
.feature-list { animation-delay: 0.4s; }
.guidelines { animation-delay: 0.5s; }

/* Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 20px;
}

/* Add focus styles for accessibility */
.cta-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(3, 173, 216, 0.3);
}
