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

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: white;

}

.header {
    background-color: black;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    max-width: 120px;
    width: 100%;
}

.logo img {
    width: 100%;
    display: block;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #00d4ff, #00a3cc);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
    padding: 8px 0;
}

.nav-link:hover {
    color: white;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid transparent;
    font-family: 'Inter', sans-serif;
}

.btn-login {
    color: #cccccc;
    background: transparent;
    border-color: #333333;
}

.btn-login:hover {
    color: white;
    border-color: #555555;
    background-color: #2a2a2a;
}

.btn-register {
    color: black;
    background-color: white;
    border-color: #333333;
}

.btn-register:hover {
    background-color: #404040;
    border-color: #404040;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 4px;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background-color: #cccccc;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 1px;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    border-top: 1px solid #333333;
    padding: 20px;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 0;
    border-bottom: 1px solid #2a2a2a;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: white;
}

.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.mobile-auth-buttons .btn {
    text-align: center;
    padding: 12px 16px;
}

@media (max-width: 768px) {
    .header {
        padding: 12px 16px;
    }

    .nav-menu {
        display: none;
    }

    .auth-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo {
        font-size: 16px;
    }

    .logo-icon {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 12px;
    }

    .mobile-menu {
        padding: 16px;
    }
}

.hero-section {
    /*padding: 80px 20px;*/
    /*max-width: 1200px;*/
    /*margin: 0 auto;*/


}

.container {
    /*padding: 80px 20px;*/
    max-width: 1000px;
    margin: 0 auto;
}

.hero-content {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
    /*margin-bottom: 80px;*/
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
}

.hero-title span {
    font-size: 1.2em;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 32px;
}

.earning-highlight {
    color: #00F0FF;
    font-weight: 600;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #00F0FF;
    color: #0a0a0a;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #00b8e6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.cta-button::after {
    content: '→';
    font-size: 18px;
    transition: transform 0.3s ease;
}

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

.signup-form {

    width: 100%;
    padding: 32px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 16px;
    background: #1B1B1B;
}

.form-header {
    background-color: #00F0FF;
    color: #0a0a0a;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    text-align: center;
}

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #cccccc;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(26, 26, 26, 0.9);
    border: 1px solid #333333;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #00F0FF;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-input::placeholder {
    color: #666666;
}

.phone-input {
    display: flex;
    gap: 2px;
}

.country-code {
    background-color: rgba(26, 26, 26, 0.9);
    border: 1px solid #333333;
    border-radius: 8px 0 0 8px;
    padding: 12px 12px;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 80px;
}

.country-flag {
    width: 16px;
    height: 12px;
    background: linear-gradient(to bottom, #dc143c 50%, white 50%);
    border-radius: 2px;
}

.phone-number {
    flex: 1;
    border-radius: 0 8px 8px 0;
}

.invest-button {
    width: 100%;
    border-radius: 6px;
    background: #00F0FF;
    color: #0a0a0a;
    padding: 14px 24px;

    border: none;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 50%;
}

.invest-button:hover {
    background-color: #00b8e6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.invest-button::after {
    content: '→';
    font-size: 18px;
    transition: transform 0.3s ease;
}

.invest-button:hover::after {
    transform: translateX(4px);
}

.features-section {
    margin-top: 80px;
}

.features-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 48px;
    color: white;
}

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

.feature-card {
    background-color: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;

}

.feature-card:hover {
    border-color: rgba(0, 212, 255, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 212, 255, 0.1);
}

/*.feature-card::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: 0;*/
/*    width: 100px;*/
/*    height: 100px;*/
/*    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), transparent);*/
/*    border-radius: 0 16px 0 100px;*/
/*}*/

.feature-text {

    position: relative;
    z-index: 1;

    color: #F4F5F7;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%; /* 25.2px */
    width: 100%;
    max-width: 70%;

}

.feature-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 2;
}

.icon-chart {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
}

.icon-growth {
    background: linear-gradient(135deg, #ff6b35, #cc5429);
}

.icon-brain {
    background: linear-gradient(135deg, #ff6b35, #0099cc);
}

.icon-support {
    background: linear-gradient(135deg, #ffb347, #0099cc);
}

.icon-globe {
    background: linear-gradient(135deg, #0099cc, #66ccff);
}

.feature-card:nth-child(5) {
    grid-column: 1 / 2;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .signup-form {
        max-width: 500px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 16px;
    }

    .hero-title {
        font-size: 36px;
    }

    .signup-form {
        padding: 24px;
    }

    .features-title {
        font-size: 28px;
    }

    .feature-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 14px;
    }

    .signup-form {
        padding: 20px;
    }

    .phone-input {
        flex-direction: column;
        gap: 12px;
    }

    .country-code {
        border-radius: 8px;
        justify-content: center;
    }

    .phone-number {
        border-radius: 8px;
    }

    .features-title {
        font-size: 24px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-text {
        font-size: 14px;
    }
}


/*___________*/
.founder-section {
    position: relative;
    height: 660px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #0a0a0a;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 74, 74, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);*/
    z-index: 2;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.floating-dot {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.dot-cyan {
    background-color: #00F0FF;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.dot-orange {
    background: linear-gradient(135deg, #ff6b35, #ffb347);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

.dot-blue {
    background: linear-gradient(135deg, #0099cc, #66ccff);
    box-shadow: 0 0 15px rgba(0, 153, 204, 0.5);
}

.dot-small {
    width: 8px;
    height: 8px;
}

.dot-medium {
    width: 16px;
    height: 16px;
}

.dot-large {
    width: 24px;
    height: 24px;
}

.dot-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.dot-2 {
    top: 25%;
    left: 85%;
    animation-delay: 1s;
}

.dot-3 {
    top: 60%;
    left: 15%;
    animation-delay: 2s;
}

.dot-4 {
    top: 70%;
    left: 80%;
    animation-delay: 3s;
}

.dot-5 {
    top: 35%;
    left: 75%;
    animation-delay: 1.5s;
}

.dot-6 {
    top: 80%;
    left: 20%;
    animation-delay: 0.5s;
}

.dot-7 {
    top: 20%;
    left: 60%;
    animation-delay: 2.5s;
}

.dot-8 {
    top: 45%;
    left: 90%;
    animation-delay: 4s;
}

.content-container {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;

    justify-content: space-around;
}

.founder-image {
    position: relative;
}

.image-container {
    /*width: 280px;*/
    width: 373px;
    height: 373px;
    /*border-radius: 20px;*/
    overflow: hidden;
    position: relative;
    /*background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));*/
    /*backdrop-filter: blur(10px);*/
    /*border: 1px solid rgba(255, 255, 255, 0.1);*/
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*filter: grayscale(20%) contrast(1.1);*/
}

.image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    /*background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(255, 107, 53, 0.2));*/
    border-radius: 30px;
    filter: blur(20px);
    z-index: -1;
    /*animation: glow 4s ease-in-out infinite alternate;*/
}

.founder-content {
    color: white;
}

.founder-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: white;
    line-height: 1.2;
}

.founder-quote {
    font-size: 18px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid #00F0FF;
}

.founder-description {
    font-size: 16px;

    color: #cccccc;
    font-weight: 500;
    line-height: 140%;
    width: 100%;
    max-width: 500px;
}

.highlight-text {
    color: #00F0FF;
    font-weight: 600;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

@keyframes glow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@media (max-width: 1024px) {
    .content-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 40px 20px;
    }

    .image-container {

        margin: 0 auto;
        width: 373px;
        height: 373px;

    }

    .founder-title {
        font-size: 28px;
    }

    .founder-quote {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .founder-section {
        
    }

    .content-container {
        padding: 30px 16px;
        gap: 30px;
    }

    .image-container {
        width: 200px;
        height: 250px;
    }

    .founder-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .founder-quote {
        font-size: 15px;
        margin-bottom: 20px;
        padding-left: 16px;
    }

    .founder-description {
        font-size: 14px;
    }

    .floating-dot {
        display: none;
    }
}

@media (max-width: 480px) {
    .founder-section {
        height: 450px;
    }

    .content-container {
        padding: 20px 12px;
    }

    .image-container {
        width: 180px;
        height: 220px;
    }

    .founder-title {
        font-size: 22px;
    }

    .founder-quote {
        font-size: 14px;
    }
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 48px;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.step-card {
    background-color: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    border-color: rgba(0, 212, 255, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 212, 255, 0.1);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), transparent);
    border-radius: 0 16px 0 80px;
}

.step-icon {
    width: 48px;
    height: 48px;
    /*background: linear-gradient(135deg, #00d4ff, #0099cc);*/
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #0a0a0a;
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    line-height: 1.5;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background-color: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    border-color: rgba(0, 212, 255, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 212, 255, 0.1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), transparent);
    border-radius: 0 16px 0 80px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    /*background: linear-gradient(135deg, #00d4ff, #0099cc);*/
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #0a0a0a;
}

.benefit-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    line-height: 1.5;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #00F0FF;
    color: #0a0a0a;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #00b8e6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.cta-button::after {
    content: '→';
    font-size: 18px;
    transition: transform 0.3s ease;
}

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

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.cta-content {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(42, 42, 42, 0.8));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(255, 107, 53, 0.05));
    border-radius: 20px;
    z-index: -1;
}

.cta-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #00F0FF;
    color: #0a0a0a;
    padding: 18px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button-large:hover {
    background-color: #00b8e6;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 212, 255, 0.4);
}

.cta-button-large::after {
    content: '→';
    font-size: 20px;
    transition: transform 0.3s ease;
}

.cta-button-large:hover::after {
    transform: translateX(6px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .steps-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .cta-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .how-it-works-section,
    .benefits-section,
    .cta-section {
        padding: 60px 0;
    }

    .container {
        /*padding: 0 16px;*/
    }

    .step-card,
    .benefit-card {
        padding: 24px;
    }

    .cta-content {
        padding: 32px 24px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .cta-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .step-title,
    .benefit-title {
        font-size: 14px;
    }

    .cta-button-large {
        padding: 16px 24px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .how-it-works-section,
    .benefits-section,
    .cta-section {
        padding: 40px 0;
    }

    .container {
        padding: 0 12px;
    }

    .step-card,
    .benefit-card {
        padding: 20px;
    }

    .cta-content {
        padding: 24px 16px;
    }

    .section-title {
        font-size: 22px;
    }

    .cta-title {
        font-size: 18px;
    }

    .step-icon,
    .benefit-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }

    .step-icon svg,
    .benefit-icon svg {
        width: 20px;
        height: 20px;
    }
}


.footer {
    background-color: #050000;
    border-top: 1px solid #333333;
    padding: 16px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
    max-width: 100px;
    width: 100%;
}

.footer-logo img {
    width: 100%;
}

.footer-logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #00d4ff, #00a3cc);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.copyright {
    font-size: 14px;
    color: #888888;
}

.footer-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #888888;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.social-link:hover {
    color: #00F0FF;
    background-color: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.social-more {
    background-color: rgba(42, 42, 42, 0.8);
    border: 1px solid #333333;
}

.social-more:hover {
    background-color: rgba(0, 212, 255, 0.1);
    border-color: #00F0FF;
}

.footer-right {
    display: flex;
    align-items: center;
}

.theme-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: #cccccc;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.theme-button:hover {
    color: white;
}

.moon-icon {
    color: #888888;
    transition: color 0.3s ease;
}

.theme-button:hover .moon-icon {
    color: #00F0FF;
}

.theme-text {
    font-size: 14px;
}

.toggle-switch {
    position: relative;
}

#darkModeToggle {
    display: none;
}

.toggle-label {
    display: block;
    width: 44px;
    height: 24px;
    background-color: #00F0FF;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-slider {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#darkModeToggle:not(:checked) + .toggle-label {
    background-color: #333333;
}

#darkModeToggle:not(:checked) + .toggle-label .toggle-slider {
    transform: translateX(-20px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .social-links {
        gap: 12px;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .footer-left {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }

    .footer-left {
        order: 2;
        justify-content: center;
    }

    .footer-center {
        order: 1;
    }

    .footer-right {
        order: 3;
    }

    .social-links {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-link {
        width: 32px;
        height: 32px;
    }

    .social-link svg {
        width: 16px;
        height: 16px;
    }

    .footer-logo {
        font-size: 16px;
    }

    .logo-icon {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .copyright {
        font-size: 12px;
    }

    .theme-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 12px 0;
    }

    .footer-container {
        padding: 12px;
        gap: 12px;
    }

    .footer-left {
        flex-direction: column;
        gap: 8px;
    }

    .social-links {
        gap: 6px;
        max-width: 280px;
    }

    .social-link {
        width: 28px;
        height: 28px;
    }

    .social-link svg {
        width: 14px;
        height: 14px;
    }

    .theme-toggle {
        gap: 8px;
    }

    .toggle-label {
        width: 36px;
        height: 20px;
    }

    .toggle-slider {
        width: 16px;
        height: 16px;
        top: 2px;
    }

    #darkModeToggle:not(:checked) + .toggle-label .toggle-slider {
        transform: translateX(-16px);
    }
}

/* Hide some social links on very small screens */
@media (max-width: 360px) {
    .social-link:nth-child(n+7) {
        display: none;
    }
}

@media (max-width: 768px) {
    .feature-card {

        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-around;
    }
}