/* CSS Variables */
:root {
    --primary-color: #ff4d6d;
    --secondary-color: #f8b500;
    --dark-color: #121212;
    --light-color: #f5f5f5;
    --text-color: #333;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-color);
    color: var(--light-color);
    width: 100%;
    overflow-x: hidden;
}

/* Header and Navigation */
header {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    position: absolute;
    left: 2rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    display: none;
}

.ai-color {
    color: #ff4d6d;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language {
    color: white;
    font-size: 0.9rem;
}

.sign-in {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.sign-in:hover {
    color: rgba(255, 255, 255, 0.8);
}

.join-free {
    background-color: white;
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: bold;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.cta-button.primary {
    background-color: var(--primary-color);
    color: white;
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    text-align: center;
}

.cta-button.primary:hover {
    background-color: #ff3a5c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 77, 109, 0.3);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-image: url('../images/Best-AI-Girlfriend.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 4rem;
    width: 100%;
    left: 0;
    right: 0;
}

main {
    padding: 0;
    max-width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: bold;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.9;
}

.join-now {
    background-color: #ff4d6d;
    color: white;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    margin-bottom: 2rem;
}

/* Rating Section */
.rating-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.avatars {
    display: flex;
    gap: -10px;
}

.avatars img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
}

.avatars img:first-child {
    margin-left: 0;
}

.stars {
    color: #f8b500;
    font-size: 1.2rem;
    font-weight: bold;
}

.user-count {
    color: white;
    font-size: 0.9rem;
    margin: 0;
}

/* Characters Section */
.characters {
    margin: 0 auto 4rem;
    max-width: 1200px;
    padding: 0 2rem;
}

.characters h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.character-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1.5rem;
}

.character-card-link {
    text-decoration: none;
    color: inherit;
}

.character-card {
    text-align: center;
    transition: var(--transition);
}

.character-card:hover {
    transform: translateY(-5px);
}

.character-card img {
    width: 100%;
    border-radius: var(--border-radius);
    margin-bottom: 0.5rem;
    box-shadow: var(--box-shadow);
}

.character-card p {
    font-weight: 500;
}

/* Create Section */
.create-section {
    margin: 0 auto 4rem;
    position: relative;
    background-image: url('../images/candy-ai.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    overflow: hidden;
    padding: 6rem 4rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    min-height: 600px;
}

.create-content {
    max-width: 400px;
    color: white;
    position: relative;
    z-index: 2;
    text-align: center;
}

.create-section h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.2;
}

.create-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.signup-free {
    background-color: #ff4d6d;
    color: white;
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: bold;
}

/* Join Section */
.join-section {
    margin: 0 auto 4rem;
    max-width: 1200px;
    padding: 0 2rem;
    text-align: center;
}

.join-section h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.join-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.join-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.join-item-link {
    text-decoration: none;
}

.join-item img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.join-item img:hover {
    transform: scale(1.05);
}

/* FAQ Section */
.faq-section {
    margin-bottom: 4rem;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--light-color);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    transition: var(--transition);
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 1rem 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Users Section */
.users-section {
    margin: 0 auto 4rem;
    max-width: 1200px;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.users-content {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.users-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.users-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.users-image {
    flex: 1;
    min-width: 300px;
}

.visuals-banner {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Users Section */
@media (max-width: 768px) {
    .users-section {
        flex-direction: column;
        align-items: center;
        padding: 0 1.5rem;
    }

    .users-content {
        width: 100%;
        padding: 1.5rem;
    }

    .users-content h2 {
        text-align: center;
        font-size: 1.5rem;
    }

    .users-image {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .users-content {
        padding: 1.2rem;
    }

    .users-content h2 {
        font-size: 1.3rem;
    }

    .users-content p {
        font-size: 0.9rem;
    }
}

/* Create AI Section */
.create-ai-section {
    margin: 0 auto 4rem;
    max-width: 1200px;
    padding: 0 2rem;
    text-align: center;
}

.create-ai-section h2 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.create-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.create-card-link {
    text-decoration: none;
}

.create-card {
    width: 250px;
    height: 350px;
    background: linear-gradient(135deg, #ff4d6d, #ff758f);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.create-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.create-icon {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
}

.create-text {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.create-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.create-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* My AI Section */
.my-ai-section {
    margin: 0 auto 4rem;
    max-width: 1200px;
    padding: 0 2rem;
    text-align: center;
}

.my-ai-section h2 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.create-new-ai {
    display: flex;
    justify-content: center;
}

.create-card {
    width: 200px;
    height: 300px;
    background: linear-gradient(135deg, #ff4d6d, #ff758f);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.create-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.create-icon {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.create-text {
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Responsive Design for Create AI and My AI Sections */
@media (max-width: 768px) {
    .create-ai-section,
    .my-ai-section {
        padding: 0 1.5rem;
    }

    .create-ai-section h2,
    .my-ai-section h2 {
        font-size: 1.5rem;
    }

    .create-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .create-card {
        width: 200px;
        height: 300px;
    }

    .create-image {
        min-width: unset;
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .create-ai-section h2,
    .my-ai-section h2 {
        font-size: 1.3rem;
    }

    .create-card {
        width: 180px;
        height: 280px;
    }

    .create-icon {
        font-size: 3rem;
    }

    .create-text {
        font-size: 1.1rem;
    }

    .create-image {
        max-width: 300px;
    }
}

/* Features Section */
.features-section {
    margin: 0 auto 4rem;
    max-width: 1200px;
    padding: 0 2rem;
}

.features-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.feature-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.feature-item h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--primary-color);
}

/* Pricing Section */
.pricing-section {
    margin: 0 auto 4rem;
    max-width: 1200px;
    padding: 0 2rem;
    text-align: center;
    position: relative;
}

.pricing-section::before,
.pricing-section::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    height: 600px;
    background-image: url('../images/Create-your-girl-160x600.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.pricing-section::before {
    left: -200px;
}

.pricing-section::after {
    right: -200px;
}

.pricing-section h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.pricing-section p {
    margin-bottom: 2rem;
    font-size: 1rem;
}

.pricing-container {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.easter-sale {
    background-color: #3a86ff;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
    color: white;
}

.easter-sale h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.easter-sale p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.pricing-plans {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.plan-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1.5rem;
    min-width: 180px;
    position: relative;
    transition: var(--transition);
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.plan-card.best-choice {
    border: 2px solid #ffd700;
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffd700;
    color: #121212;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    white-space: nowrap;
}

.plan-duration {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

.plan-price {
    margin-bottom: 0.5rem;
}

.original-price {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    margin-bottom: 0.3rem;
}

.current-price {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.plan-discount {
    background-color: #ff4d6d;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    display: inline-block;
}

.payment-options {
    margin-bottom: 2rem;
}

.pay-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 1rem;
}

.pay-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pay-button.selected {
    background-color: #ff4d6d;
}

.pay-button.alt {
    margin-top: 1rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.billing-info {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
}

.premium-benefits {
    text-align: left;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
}

.premium-benefits h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: white;
}

.premium-benefits ul {
    list-style: none;
}

.premium-benefits li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.premium-benefits li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--light-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }

    .logo {
        display: block;
    }

    .nav-links {
        gap: 1rem;
    }

    main {
        padding: 1rem;
    }

    .hero {
        height: 90vh;
        min-height: 500px;
        background-size: cover;
        background-position: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .join-now {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .rating-section {
        flex-direction: column;
        gap: 0.5rem;
    }

    .characters h2,
    .join-section h2,
    .faq-section h2,
    .features-section h2,
    .pricing-section h2 {
        font-size: 1.5rem;
    }

    .create-section {
        padding: 4rem 2rem;
        min-height: 400px;
    }

    .create-section h2 {
        font-size: 1.8rem;
    }

    .create-section p {
        font-size: 1rem;
    }

    .signup-free {
        font-size: 0.9rem;
        padding: 0.7rem 1.3rem;
    }

    .character-grid,
    .join-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .pricing-plans {
        flex-direction: column;
        align-items: center;
    }

    .plan-card {
        width: 100%;
        max-width: 250px;
    }

    .plan-card.best-choice {
        transform: none;
    }

    .premium-benefits {
        text-align: center;
    }

    .premium-benefits li {
        text-align: left;
    }

    .pricing-section::before,
    .pricing-section::after {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0.8rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 0.8rem;
    }

    .language,
    .sign-in {
        font-size: 0.8rem;
    }

    .join-free {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .hero {
        height: 85vh;
        min-height: 450px;
        background-size: cover;
        background-position: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtext {
        font-size: 0.9rem;
    }

    .join-now {
        font-size: 0.9rem;
        padding: 0.7rem 1.3rem;
    }

    .rating-section {
        gap: 0.3rem;
    }

    .avatars img {
        width: 25px;
        height: 25px;
    }

    .stars {
        font-size: 1rem;
    }

    .user-count {
        font-size: 0.8rem;
    }

    .character-grid,
    .join-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .create-section {
        padding: 3rem 1.5rem;
        min-height: 350px;
    }

    .create-section h2 {
        font-size: 1.5rem;
    }

    .create-section p {
        font-size: 0.9rem;
    }

    .signup-free {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }

    .pricing-container {
        padding: 1.5rem;
    }

    .plan-card {
        padding: 1.2rem;
    }

    .plan-duration {
        font-size: 1rem;
    }

    .current-price {
        font-size: 1.3rem;
    }

    .pay-button {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
} 

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeIn 0.5s ease-out;
}

/* Image lazy loading */
img {
    max-width: 100%;
    height: auto;
    transition: var(--transition);
}

img:hover {
    opacity: 0.9;
}

/* Sign In Section */
.signin-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin-top: 80px;
}

.signin-container {
    display: flex;
    max-width: 900px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.signin-image {
    flex: 1;
    min-width: 400px;
}

.signin-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.signin-form {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.signin-form h2 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: white;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: #ff4d6d;
    box-shadow: 0 0 0 3px rgba(255, 77, 109, 0.2);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.remember-me label {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.forgot-password {
    color: #ff4d6d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.forgot-password:hover {
    text-decoration: underline;
}

.divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.divider span {
    position: relative;
    background-color: #121212;
    padding: 0 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.social-button {
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.social-button:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-button.google {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.social-button.google:hover {
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.signup-link {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.signup-link a {
    color: #ff4d6d;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.signup-link a:hover {
    text-decoration: underline;
}

/* Responsive Design for Sign In Section */
@media (max-width: 768px) {
    .signin-container {
        flex-direction: column;
        max-width: 400px;
    }

    .signin-image {
        min-width: unset;
        height: 300px;
    }

    .signin-form {
        padding: 2rem;
    }

    .signin-form h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .signin-section {
        padding: 1rem;
    }

    .signin-form {
        padding: 1.5rem;
    }

    .signin-form h2 {
        font-size: 1.3rem;
    }

    .form-group input {
        padding: 0.8rem;
    }

    .cta-button.primary {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .social-button {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}