/* Create Token Specific Styles */
.create-token-heading {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.subtitle {
    text-align: center;
    color: #94a3b8;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* Fee Calculator Section */
.fee-calculator-section {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-left: 4px solid #3b82f6;
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fee-calculator-title {
    color: #3b82f6;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

.fee-breakdown {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 6px;
    font-size: 14px;
}

.fee-item.base {
    border-left: 3px solid #10b981;
}

.fee-item.optional {
    border-left: 3px solid #f59e0b;
}

.fee-item.total {
    border-left: 3px solid #3b82f6;
    font-weight: bold;
    font-size: 16px;
    margin-top: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
}

/* Disclaimer Section */
.disclaimer-section {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-left: 4px solid #ef4444;
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.disclaimer-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.disclaimer-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 14px;
}

.disclaimer-checkbox input {
    margin-top: 3px;
    transform: scale(1.2);
}
 

/* Fix for disclaimer section layout */
.disclaimer-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #ef4444;
    border-radius: 8px;
    margin-bottom: 20px;
}

.disclaimer-text {
    color: #ffffff;
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}

.disclaimer-text strong {
    font-size: 16px !important;
    font-weight: 900 !important;
}

.disclaimer-text strong[style*="color: #ef4444"] {
    font-size: 16px !important;
    font-weight: 900 !important;
    color: #ef4444 !important; /* Keep the red color */
}


.disclaimer-text {
    font-size: 16px !important;
    font-weight: bold !important;
}


.disclaimer-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 3px;
    padding-left: 2px; /* Aligns checkbox with text above */
}

.disclaimer-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
}

.disclaimer-checkbox label {
    color: #ffffff;
    font-size: 15px; /* Matches disclaimer text size */
    margin: 0;
    cursor: pointer;
    line-height: 1.5;
}





/* Form Styles */
.form-container {
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.9);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #e2e8f0;
}

.required {
    color: #ef4444;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="file"],
textarea,
select {
    width: 100%;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(51, 65, 85, 0.5);
    border-radius: 8px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

select {
    cursor: pointer;
}

select option {
    background: #1e293b;
    color: white;
}

/* Feature Sections */
.feature-section {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-section h2 {
    color: #f97316;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.feature-subtitle {
    color: #f97316;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

.revoke-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.revoke-card {
    background: rgba(30, 41, 59, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.revoke-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.revoke-card strong {
    color: white;
    display: block;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.revoke-card p {
    text-align: left !important; /* Override justified or other alignments */
    word-spacing: normal !important; /* Reset any unusual spacing */
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-container input {
    margin-top: 3px;
    transform: scale(1.3);
}

/* Liquidity Section */
.liquidity-section {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-left: 4px solid #10b981;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.liquidity-section h2 {
    color: #10b981;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.dex-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.dex-option {
    background: rgba(30, 41, 59, 0.8);
    border: 2px solid rgba(51, 65, 85, 0.5);
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.dex-option:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.dex-option.selected {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.2);
}

.dex-option img {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
}

/* Cross-Platform Integration */
.integration-section {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-left: 4px solid #8b5cf6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.integration-section h2 {
    color: #8b5cf6;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.platform-card {
    background: rgba(30, 41, 59, 0.8);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.25);
    border-color: #8b5cf6;
}

.platform-card input[type="checkbox"] {
    transform: scale(1.3);
    margin-bottom: 0.5rem;
}

/* Expandable Sections */
.expandable-section {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expandable-toggle {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: bold;
    cursor: pointer;
}

.expandable-content {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.expandable-content.expanded {
    opacity: 1;
    max-height: 1000px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.social-input {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 8px;
    padding: 0.75rem;
    color: white;
}

/* Preview Sections */
.preview-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.preview-card {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.preview-card h3 {
    color: #3b82f6;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.market-cap-display {
    font-size: 1.2rem;
    font-weight: bold;
    color: #10b981;
    margin-top: 1rem;
}

.metadata-preview {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 8px;
    padding: 1rem;
    font-family: monospace;
    font-size: 12px;
    color: #94a3b8;
    min-height: 200px;
    white-space: pre-wrap;
    overflow-x: auto;
}

/* Terms Section */
.terms-section {
    margin: 2rem 0;
    font-size: 14px;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.terms-checkbox input.terms-checkbox-input {
    margin-top: 3px;
    transform: scale(1.5);
}

/* Launch Button */
.launch-button {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #8b5cf6, #d97706);
    color: white;
    padding: 22px 0;
    width: 100%;
    min-height: 78px;
    border: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.launch-button:hover:not(:disabled) {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.launch-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Hover effects for main content boxes */
.fee-calculator-section:hover,
.disclaimer-section:hover,
.form-container:hover,
.liquidity-section:hover,
.integration-section:hover,
.revoke-card:hover,
.preview-card:hover,
.expandable-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    .create-token-heading {
        font-size: 2rem;
    }

    .form-container {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .preview-section {
        grid-template-columns: 1fr;
    }

    .revoke-grid {
        grid-template-columns: 1fr;
    }

    .dex-selection {
        grid-template-columns: 1fr;
    }

    .platform-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
}


.checkbox-item {
  display: flex;
  align-items: baseline;
  gap: 6px; /* Adjust as needed */
  font-size: 14px;
}
.checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin: 0 4px 0 0;
}
.checkbox-item label {
  margin-bottom: 0;
  vertical-align: middle;
  line-height: 1.2;
}

/* Wrap the checkbox + label text in a container if not already */
.checkbox-container,
.disclaimer-checkbox,
.terms-checkbox {
  display: flex;
  align-items: center;    /* Vertically center checkbox + label text */
  gap: 0.4rem;            /* Horizontal spacing between checkbox and text */
}

/* Style the checkbox input */
.checkbox-container input[type="checkbox"],
.disclaimer-checkbox input[type="checkbox"],
.terms-checkbox input[type="checkbox"] {
  margin: 0;              /* Remove default margin */
  padding: 0;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  cursor: pointer;
  position: relative;
  top: 1px;               /* Adjust vertical position slightly */
}

/* Style the label */
.checkbox-container label,
.disclaimer-checkbox label,
.terms-checkbox label {
  margin: 0;
  cursor: pointer;
  font-size: inherit;
  line-height: 1.4;
  user-select: none;      /* Optional: prevent accidental text selection */
}

/* Ensure input and label are side-by-side inline */
label[for] {
  display: inline-block;
  vertical-align: middle;
}

.expandable-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    user-select: none;
}

.expandable-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    transform: none;
    vertical-align: middle;
}

.expandable-toggle label {
    margin: 0;
    cursor: pointer;
    color: white; /* or your site's label color */
}

.scrolling-ticker .ticker-content {
    animation: scrollLeft 80s linear infinite !important;
    display: inline-block !important;
    white-space: nowrap !important;
    background: #0f172a !important;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
