* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(180deg, #1a4d8f 0%, #0a2540 50%, #000814 100%);
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body.light-mode {
    background: linear-gradient(180deg, #87ceeb 0%, #5b9bd5 50%, #4a7ba7 100%);
    color: #1d1d1f;
}

#stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 223, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 100, 100, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(100, 200, 255, 0.15) 0%, transparent 50%);
    animation: backgroundShift 20s ease infinite;
    z-index: -1;
}

@keyframes backgroundShift {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05) rotate(1deg);
    }
}

.floating-renders {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.render {
    position: absolute;
    opacity: 0.15;
    animation: floatRender 20s ease-in-out infinite;
    pointer-events: none;
}

.render-1 {
    width: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.render-2 {
    width: 250px;
    top: 60%;
    right: 8%;
    animation-delay: 5s;
    animation-duration: 30s;
}

.render-3 {
    width: 280px;
    bottom: 15%;
    left: 10%;
    animation-delay: 10s;
    animation-duration: 28s;
}

.render-4 {
    width: 320px;
    top: 40%;
    right: 5%;
    animation-delay: 15s;
    animation-duration: 32s;
}

@keyframes floatRender {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-30px) translateX(10px);
    }
}

.container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 20px;
}

header {
    text-align: center;
    padding: 60px 20px 40px;
    position: relative;
}

.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 223, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 223, 0, 0.4);
    border-radius: 50px;
    text-decoration: none;
    color: #ffdf00;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-button:hover {
    transform: translateX(-5px) scale(1.05);
    background: rgba(255, 223, 0, 0.3);
    box-shadow: 0 6px 20px rgba(255, 223, 0, 0.5);
}

.back-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.back-button:hover .back-icon {
    transform: translateX(-3px);
}

header h1 {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffdf00 0%, #ff6b6b 50%, #4ecdc4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.5rem;
    color: #9ca3af;
    font-weight: 400;
}

.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.info-card {
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 223, 0, 0.3);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(255, 223, 0, 0.5);
    box-shadow: 0 8px 25px rgba(255, 223, 0, 0.2);
    transform: translateY(-5px);
}

.info-card h3 {
    color: #ffdf00;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.info-card p {
    color: #d1d5db;
    line-height: 1.8;
}

.form-section {
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 223, 0, 0.3);
    margin-bottom: 40px;
}

.form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffdf00;
    margin-bottom: 15px;
}

.form-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 35px;
}

.development-section {
    padding: 0 20px 40px;
}

.development-card {
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 223, 0, 0.4);
    text-align: center;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.development-card:hover {
    border-color: rgba(255, 223, 0, 0.6);
    box-shadow: 0 10px 30px rgba(255, 223, 0, 0.2);
    transform: translateY(-5px);
}

.development-icon {
    font-size: 5rem;
    margin-bottom: 25px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.development-card h2 {
    font-size: 2.5rem;
    color: #ffdf00;
    margin-bottom: 20px;
    font-weight: 700;
}

.development-message {
    font-size: 1.2rem;
    color: #d1d5db;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 30px;
}

.development-status {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 223, 0, 0.15);
    border: 2px solid rgba(255, 223, 0, 0.4);
    border-radius: 50px;
    font-weight: 600;
}

.status-icon {
    font-size: 1.3rem;
}

.status-text {
    color: #ffdf00;
    font-size: 1.1rem;
}

.patience-message {
    font-size: 1.1rem;
    color: #9ca3af;
    font-style: italic;
    margin-top: 20px;
}

.alternatives-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 30px;
    padding: 0 20px;
}

#idea-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.honeypot {
    display: none;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #ffdf00;
    font-weight: 600;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 223, 0, 0.3);
    border-radius: 10px;
    padding: 12px 15px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group select option {
    background: #1a1a1a;
    color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 223, 0, 0.6);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 223, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group small {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-top: -5px;
}

.submit-btn {
    background: linear-gradient(135deg, rgba(255, 223, 0, 0.2) 0%, rgba(255, 107, 107, 0.2) 100%);
    border: 2px solid rgba(255, 223, 0, 0.4);
    color: #ffdf00;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, rgba(255, 223, 0, 0.3) 0%, rgba(255, 107, 107, 0.3) 100%);
    border-color: rgba(255, 223, 0, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 223, 0, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .submit-icon {
    transform: rotate(15deg) scale(1.2);
}

.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 1s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.success-message h2 {
    color: #ffdf00;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.success-message p {
    color: #d1d5db;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.alternatives-section {
    padding: 0 20px 40px;
}

.alternatives-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffdf00;
    margin-bottom: 30px;
}

.alternatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.alt-card {
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 223, 0, 0.3);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    text-align: center;
}

.alt-card:hover {
    border-color: rgba(255, 223, 0, 0.6);
    box-shadow: 0 8px 25px rgba(255, 223, 0, 0.3);
    transform: translateY(-5px);
}

.alt-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.alt-icon-svg {
    width: 60px;
    height: 60px;
    fill: #ffdf00;
    transition: all 0.3s ease;
}

.alt-card:hover .alt-icon-svg {
    fill: #fff;
    transform: scale(1.1);
}

body.light-mode .alt-icon-svg {
    fill: #ff6b6b;
}

body.light-mode .alt-card:hover .alt-icon-svg {
    fill: #1d1d1f;
}

.alt-card h3 {
    color: #ffdf00;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.alt-card p {
    color: #d1d5db;
    line-height: 1.8;
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a4d8f 0%, #0a2540 50%, #000814 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border: 4px solid rgba(255, 223, 0, 0.2);
    border-top: 4px solid #ffdf00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader-text {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffdf00 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.theme-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
}

#theme-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 223, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 223, 0, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

#theme-toggle:hover {
    transform: scale(1.1);
    background: rgba(255, 223, 0, 0.3);
}

.theme-menu {
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 223, 0, 0.4);
    padding: 8px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.theme-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.theme-option {
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: #ffdf00;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.theme-option:hover {
    background: rgba(255, 223, 0, 0.2);
}

.theme-option.active {
    background: rgba(255, 223, 0, 0.3);
}

body.light-mode .info-card,
body.light-mode .form-section,
body.light-mode .alt-card,
body.light-mode .development-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 223, 0, 0.4);
}

body.light-mode .info-card p,
body.light-mode .alt-card p,
body.light-mode .development-message,
body.light-mode .alternatives-intro {
    color: #1d1d1f;
}

body.light-mode .form-group input,
body.light-mode .form-group select,
body.light-mode .form-group textarea {
    background: rgba(255, 255, 255, 0.9);
    color: #1d1d1f;
    border-color: rgba(255, 223, 0, 0.4);
}

body.light-mode .form-group select option {
    background: #fff;
    color: #1d1d1f;
}

body.light-mode .form-group input::placeholder,
body.light-mode .form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

body.light-mode .form-group label {
    color: #ff6b6b;
}

body.light-mode .info-card h3,
body.light-mode .alt-card h3,
body.light-mode .alternatives-section h2,
body.light-mode .development-card h2,
body.light-mode .status-text {
    color: #ff6b6b;
}

body.light-mode #loading-screen {
    background: linear-gradient(180deg, #87ceeb 0%, #5b9bd5 50%, #4a7ba7 100%);
}

body.light-mode .theme-menu {
    background: rgba(255, 255, 255, 0.95);
}

body.light-mode .theme-option {
    color: #ff6b6b;
}

body.light-mode .back-button {
    background: rgba(255, 223, 0, 0.3);
    border: 2px solid rgba(255, 223, 0, 0.5);
    color: #ff6b6b;
}

body.light-mode .back-button:hover {
    background: rgba(255, 223, 0, 0.4);
}

@media (max-width: 768px) {
    .back-button {
        top: 15px;
        left: 15px;
        padding: 10px 16px;
        font-size: 1rem;
    }

    .back-text {
        display: none;
    }

    .back-icon {
        font-size: 1.8rem;
    }

    header h1 {
        font-size: 3rem;
    }

    .form-section {
        padding: 25px;
    }

    .info-section {
        grid-template-columns: 1fr;
    }

    .alternatives-grid {
        grid-template-columns: 1fr;
    }
}
