@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: linear-gradient(to bottom, #0a0a0a, #1a1a1a);
    color: #efefef;
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: #10b981;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #059669;
}

strong {
    color: #efefef;
}

/* Header */
header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-link {
    color: #10b981;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.back-link:hover {
    color: #059669;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: #bfbfbf;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #10b981;
}

/* Dropdown Menu */
.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.5rem;
    transition: transform 0.3s;
    margin: 0 0 -6px 3px
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 0.5rem);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: rgba(20, 20, 20, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(-50%) rotate(45deg);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    color: #efefef;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.dropdown-icon {
    font-size: 1.3rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.dropdown-item:hover .dropdown-icon {
    background: rgba(16, 185, 129, 0.15);
}

.dropdown-content {
    flex: 1;
}

.dropdown-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

.dropdown-description {
    font-size: 0.8rem;
    color: #808080;
}

.lang-selector {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    color: #efefef;
    cursor: pointer;
    font-size: 0.9rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-selector:hover {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.lang-options {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.lang-selector.active .lang-options {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 0.3rem);
}

.lang-option {
    padding: 0.6rem 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-option:hover {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.lang-option.selected {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.cta-button {
    background: #10b981;
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #059669;
    transform: translateY(-2px);
    color: #fff;
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.hero-description {
    font-size: 1rem;
    color: #bfbfbf;
    max-width: 900px;
    margin: 0 auto 1.6rem;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.static h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.static .last-updated {
    color: #808080;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.static .intro {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    line-height: 1.8;
}


h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

h3 {
    font-size: 1.3rem;
    color: #10b981;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.2rem;
    color: #b0b0b0;
    line-height: 1.8;
}

ul, ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
    color: #b0b0b0;
}

li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.highlight-box {
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid #10b981;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.highlight-box p {
    margin-bottom: 0;
}

.warning-box {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.warning-box p {
    margin-bottom: 0;
    color: #fca5a5;
}

.contact-item {
    margin-bottom: 1rem;
}

.contact-item strong {
    color: #10b981;
}

.contact-info {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.contact-info h3 {
    margin-top: 0;
}


/* Generator Card */
.generator-card {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 0.2rem 1rem 1rem 1rem;
    max-width: 900px;
    margin: 0 auto 5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: transparent;
    border: none;
    color: #808080;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.tab:hover {
    color: #efefef;
}

.tab.active {
    color: #10b981;
    border-bottom-color: #10b981;
}

.tab-icon {
    font-size: 1.2rem;
}

/* Generator Content */
.generator-content {
    display: none;
}

.generator-content.active {
    display: block;
}

.upload-area {
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
}

.upload-area:hover {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}

.upload-area.dragover {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.upload-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.upload-text {
    color: #bfbfbf;
    margin-bottom: 0.5rem;
}

.upload-subtext {
    color: #606060;
    font-size: 0.9rem;
}

.image-preview {
    display: none;
    max-width: 60%;
    border-radius: 12px;
    cursor: pointer;
}

.js-change-image {
    display: block;
    margin-bottom: 1.5rem;
    color:#999999;
    font-size:14px
}

.prompt-area {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.2rem;
    color: #efefef;
    font-size: 0.9rem;
    resize: vertical;
    min-height: 120px;
    margin-bottom: 1rem;
    font-family: inherit;
}

.prompt-area::placeholder {
    color: #606060;
}

.prompt-area:focus {
    outline: none;
    border-color: #10b981;
}

.controls {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.controls-sb {
    justify-content: space-between;
}

.control-group {
    display: flex;
    gap: 1rem;
}

.dropdown {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: #efefef;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    position: relative;
}

.dropdown:hover {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.dropdown-settings-arrow{
    font-size: 0.5rem;
    transition: transform 0.3s;
    margin: 0 0 -4px 2px
}

.dropdown-options {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.dropdown.active .dropdown-options {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 0.3rem);
}

.dropdown-option {
    padding: 0.7rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-option:hover {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.dropdown-option.selected {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.generate-btn {
    background: #10b981;
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.generate-btn:hover {
    background: #059669;
    transform: translateY(-2px);
}

.generate-btn:disabled {
    background: #10b981;
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.animate-spin {
    animation: spin 1s linear infinite;
    width: 1rem;
    height: 1rem;
    margin-right: 4px;
}
@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform:rotate(360deg);
    }
}
.wrapper-form-info {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top:10px
}

.turnstile-container {
    display: none;
    margin-top: 8px;
    align-self: end;
}

.form-error {
    padding: 0.8rem 1rem;
    background-color: rgba(238, 181, 36, 0.1);
    color: #eeb524;
    font-size: 14px;
    text-align: center;
    margin-top: 25px;
    border-radius: 10px;
}

/* Test Result Section */

.wrapper-result {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

.wrapper-result .controls {
    justify-content: center;
    margin-top: 1rem;
}

.result-image {
    max-width: 60%;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.result-info {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.result-details {
    display: flex;
    gap: 2rem;
}

.result-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.result-detail-label {
    font-size: 0.85rem;
    color: #808080;
}

.result-detail-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #10b981;
}

.download-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.download-btn.success {
    background: linear-gradient(135deg, #059669, #047857);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.download-btn:active {
    transform: translateY(0);
}

/* Features Section */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #bfbfbf;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: #bfbfbf;
    line-height: 1.6;
}

/* How to Use */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    counter-reset: step;
}

.step {
    position: relative;
    padding-left: 3rem;
}

.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-title {
    font-size: 1.2rem;
    margin-top:5px;
    margin-left:10px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #bfbfbf;
}

/* Examples */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.example-card {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.example-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
}

.example-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.example-image {
    aspect-ratio: 1;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #606060;
    font-size: 0.9rem;
    position: relative;
}

.example-label {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.example-content {
    padding: 1.5rem;
}

.example-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.example-description {
    color: #bfbfbf;
    font-size: 0.9rem;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-toggle {
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    color: #bfbfbf;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
}


.error-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.error-code {
    font-size: 10rem;
    font-weight: 900;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.error-title {
    font-size: 2.5rem !important;
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 1rem;
    -webkit-text-fill-color: inherit !important;
}

.error-message {
    font-size: 1.2rem;
    color: #bfbfbf;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.error-illustration {
    font-size: 8rem;
    margin-bottom: 2rem;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

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

.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.btn-secondary:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
}

/* Credit Info Container - Bottom of Generator */
.credit-info-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 0;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.credit-balance-bottom {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.5rem;
    border-radius: 10px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.credit-icon {
    font-size: 1.5rem;
}

.credit-content {
    display: flex;
    flex-direction: column;
}

.credit-label {
    font-size: 0.75rem;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.credit-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.credit-amount-number {
    font-size: 1rem;
}

.generation-cost {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a0a0a0;
    font-size: 0.8rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.generation-cost-icon {
    font-size: 0.65rem;
    text-transform:uppercase;
    letter-spacing: 0.05em
}

.cost-value {
    font-size: 0.8rem;
    font-weight: 700;
    color: #10b981;
    line-height: 1.2;
}

/* Credit Balance */
.credit-balance {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.credit-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.credit-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.credit-details {
    display: flex;
    flex-direction: column;
}

.credit-label {
    font-size: 0.65rem;
    color: #a5a5a5;
}

.credit-amount {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.credit-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.credit-status {
    font-size: 0.85rem;
    color: #a0a0a0;
}

/* Cost Indicator */
.cost-indicator {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.cost-icon {
    font-size: 1rem;
}

.cost-text {
    color: #10b981;
    font-weight: 600;
}

.cost-description {
    color: #a0a0a0;
    margin-left: 0.2rem;
}

/* Footer */
footer {
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    text-align: center;
}

.static footer {
    margin-top: 5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #808080;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #10b981;
}

.footer-copyright {
    color: #606060;
    font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #efefef;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    padding: 1.5rem;
    overflow-y: auto;
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #efefef;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.mobile-menu-item {
    padding: 0.75rem 1rem;
    color: #efefef;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 1rem;
}

.mobile-menu-item:hover {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.mobile-menu-section {
    margin-top: 0.5rem;
}

.mobile-menu-section-title {
    color: #10b981;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.75rem 1rem 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-menu-tools {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.mobile-tool-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    text-decoration: none;
    color: #efefef;
    transition: all 0.3s;
}

.mobile-tool-item:hover {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.mobile-tool-icon {
    font-size: 1.3rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    flex-shrink: 0;
}

.mobile-tool-content {
    flex: 1;
}

.mobile-tool-title {
    font-weight: 600;
    margin-bottom: 0.1rem;
    font-size: 0.95rem;
}

.mobile-tool-description {
    font-size: 0.8rem;
    color: #808080;
}

.mobile-lang-selector {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.mobile-lang-selector .mobile-title {
    color: #808080;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.mobile-lang-selector .mobile-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.mobile-lang-selector .mobile-menu-item {
    padding: 0.6rem !important;
    font-size: 0.9rem !important;
    text-align: center !important;
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.mobile-lang-selector .mobile-w {
    padding: 0.6rem;
    font-size: 0.9rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .static h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 3rem 1rem 2rem;
    }

    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-container .cta-button {
        display: none;
    }

    .generator-card {
        padding: 0.5rem 1rem;
    }

    .tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .tab {
        padding: 0.7rem 0.5rem;
        font-size: 0.9rem;
    }

    .tab-icon {
        font-size: 0.9rem;
    }

    .controls {
        flex-direction: column;
    }

    .control-group {
        width: 100%;
        flex-direction: column;
    }

    .dropdown,
    .generate-btn {
        width: 100%;
    }

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

    .container {
        padding: 2rem 1rem;
    }

    .header-container {
        padding: 0 1rem;
    }

    .error-code {
        font-size: 6rem;
    }

    .error-title {
        font-size: 2rem;
    }

    .error-message {
        font-size: 1rem;
    }

    .error-illustration {
        font-size: 5rem;
    }

    .button-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 3rem;
    }

    .btn {
        width: 100%;
    }

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

.hidden {
    display: none !important;
}
