/* ========================================
   PASSWORD GENERATOR TOOL STYLES
   ======================================== */

/* Hero Section */
.password-generator-hero-bg {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    padding-top: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.password-generator-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .password-generator-title {
        font-size: 2.5rem;
    }
}

.password-generator-title-accent {
    color: #5454ee;
}

.password-generator-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Password Generator Container */
.password-copy-btn {
    background: #5454ee;
    color: white;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px rgba(84, 84, 238, 0.2);
}

.password-copy-btn:hover {
    background: #3b3be0;
    box-shadow: 0 20px 25px -5px rgba(84, 84, 238, 0.2);
    transform: translateY(-2px);
}

/* Custom Range Slider Styling */
.password-range-slider {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}

.password-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #5454ee;
    cursor: pointer;
    margin-top: -8px;
    box-shadow: 0 2px 6px rgba(84, 84, 238, 0.4);
}

.password-range-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: #cbd5e1;
    border-radius: 2px;
}

.password-range-slider:focus::-webkit-slider-thumb {
    border: 2px solid white;
    outline: 2px solid #5454ee;
}

/* Password Options */
.password-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.password-option:hover {
    background: #f8fafc;
}

.password-option-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.password-option-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.uppercase-icon {
    background: #dbeafe;
    color: #2563eb;
}

.lowercase-icon {
    background: #dcfce7;
    color: #16a34a;
}

.numbers-icon {
    background: #fed7d7;
    color: #dc2626;
}

.symbols-icon {
    background: #e9d8fd;
    color: #805ad5;
}

.password-option-label {
    font-weight: 500;
    color: #334155;
}

/* Password Toggle Switches */
.password-toggle-switch {
    width: 2.75rem;
    height: 1.5rem;
    background: #e2e8f0;
    border-radius: 9999px;
    position: relative;
    transition: background-color 0.2s;
}

input:checked + .password-toggle-switch {
    background: #5454ee;
}

.password-toggle-switch::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 1rem;
    height: 1rem;
    background: white;
    border-radius: 50%;
    transition: transform 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

input:checked + .password-toggle-switch::before {
    transform: translateX(1.25rem);
}

/* Password Why Section */
.password-why-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

/* Password Generator Themes CTA */
.password-themes-cta {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #f1f5f9;
    text-align: center;
}

.password-themes-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.password-themes-text {
    color: #475569;
    margin-bottom: 2rem;
}

.password-themes-image-container {
    position: relative;
    cursor: pointer;
    margin-bottom: 2rem;
}

.password-themes-image {
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    margin: 0 auto;
    transform: scale(1);
    transition: transform 0.3s;
    display: block;
    width: 100%;
    max-width: 31.25rem;
    height: auto;
}

.password-themes-image-container:hover .password-themes-image {
    transform: scale(1.05);
}

.password-themes-button {
    display: inline-block;
    background: #5454ee;
    color: white;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.2s;
}

.password-themes-button:hover {
    background: #3b3be0;
}

/* Password Generator Hero Section */
.password-generator-hero-bg {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    padding-top: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.password-hero-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 2.5rem;
    margin-top: 50px;
}

.password-security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: #dcfce7;
    color: #166534;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #bbf7d0;
}

/* Password Controls Container */
.password-controls-container {
    padding: 2rem;
}

.password-copy-section {
    display: flex;
    justify-content: center;
    margin-top: -3.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 20;
}

.password-length-section {
    margin-bottom: 2rem;
}

.password-length-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.password-length-label {
    font-weight: 700;
    color: #334155;
}

.password-length-display {
    background: #f1f5f9;
    color: #5454ee;
    font-family: ui-monospace, SFMono-Regular, "SF Mono", Monaco, Inconsolata, "Roboto Mono", "Source Code Pro", monospace;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
}

/* Password Options Grid */
.password-options-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
}

@media (min-width: 768px) {
    .password-options-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.password-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.password-option:hover {
    background: #f8fafc;
}

.password-option-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.password-option-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.uppercase-icon {
    background: #dbeafe;
    color: #2563eb;
}

.lowercase-icon {
    background: #dcfce7;
    color: #16a34a;
}

.numbers-icon {
    background: #fed7d7;
    color: #dc2626;
}

.symbols-icon {
    background: #e9d8fd;
    color: #805ad5;
}

.password-option-label {
    font-weight: 500;
    color: #334155;
}

/* Password Toggle Switches */
.password-toggle-switch {
    width: 2.75rem;
    height: 1.5rem;
    background: #e2e8f0;
    border-radius: 9999px;
    position: relative;
    transition: background-color 0.2s;
}

input:checked + .password-toggle-switch {
    background: #5454ee;
}

.password-toggle-switch::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 1rem;
    height: 1rem;
    background: white;
    border-radius: 50%;
    transition: transform 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

input:checked + .password-toggle-switch::before {
    transform: translateX(1.25rem);
}

/* Password Why Section */
.password-why-section {
    padding: 5rem 0;
    background: white;
}

.password-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .password-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .password-container {
        padding: 0 2rem;
    }
}

.password-main-container {
    max-width: 56rem;
    margin: 0 auto;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    padding: 0 2rem 2rem;
}

.password-why-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .password-why-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .password-why-container {
        padding: 0 2rem;
    }
}

.password-checkbox {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.strength-green {
    background-color: #22c55e;
}

.strength-red {
    background-color: #ef4444;
}

.strength-yellow {
    background-color: #facc15;
}

.strength-gray {
    background-color: #334155;
}

.strength-text-red {
    color: #f87171;
}

.strength-text-yellow {
    color: #fbbf24;
}

.strength-text-green {
    color: #4ade80;
}

.password-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .password-why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.password-why-content {
    max-width: 32rem;
}

.password-why-text {
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.625;
}

.password-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.password-feature-item {
    display: flex;
    gap: 1rem;
}

.password-feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.shield-icon {
    background: #dcfce7;
    color: #16a34a;
}

.user-icon {
    background: #dbeafe;
    color: #2563eb;
}

.password-feature-content {
    flex: 1;
}

.password-feature-title {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.password-feature-text {
    font-size: 0.875rem;
    color: #64748b;
}

/* Password Display Container */
.password-display-container {
    background: #0f172a;
    padding: 2rem 0;
    text-align: center;
    position: relative;
    margin: 0 -2rem 2rem;
    width: calc(100% + 4rem);
}

.password-input-wrapper {
    position: relative;
}

.password-display-input {
    width: 100%;
    background: transparent;
    color: white;
    font-family: ui-monospace, SFMono-Regular, "SF Mono", Monaco, Inconsolata, "Roboto Mono", "Source Code Pro", monospace;
    font-size: 1.5rem;
    text-align: center;
    outline: none;
    letter-spacing: 0.025em;
    word-break: break-all;
    border: none;
}

@media (min-width: 768px) {
    .password-display-input {
        font-size: 1.875rem;
    }
}

.password-regenerate-btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.password-regenerate-btn:hover {
    color: white;
}

.password-strength-container {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.password-strength-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

/* ========================================
   THEME DETECTOR TOOL STYLES
   ======================================== */

/* Hero Section */
.td-hero-bg {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    padding-top: 8rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.td-hero-content {
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.td-hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .td-hero-title {
        font-size: 3rem;
    }
}

.td-hero-title-accent {
    color: #5454ee;
}

.td-hero-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Search Container */
.td-search-container {
    background: white;
    padding: 0.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .td-search-container {
        flex-direction: row;
    }
}

.td-search-input-group {
    flex: 1;
    position: relative;
}

.td-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.td-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border-radius: 0.75rem;
    border: none;
    outline: none;
    font-size: 1.125rem;
    color: #0f172a;
    background: transparent;
}

.td-search-input::placeholder {
    color: #94a3b8;
}

.td-search-input:focus {
    outline: 2px solid rgba(84, 84, 238, 0.2);
}

.td-search-button {
    background: #5454ee;
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px rgba(84, 84, 238, 0.2);
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.td-search-button:hover:not(:disabled) {
    background: #3b3be0;
    box-shadow: 0 20px 25px -5px rgba(84, 84, 238, 0.2);
    transform: translateY(-2px);
}

.td-search-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.td-loading-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.td-status-text {
    margin-top: 1rem;
    color: #5454ee;
    font-weight: 500;
    font-size: 0.875rem;
    animation: pulse 1.5s ease-in-out infinite;
}

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

/* Results Section */
.td-results-container {
    margin-top: 3rem;
    text-align: left;
}

.td-result-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.td-result-header {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.td-result-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.td-status-indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #22c55e;
}

.td-status-text {
    font-weight: 700;
    color: #334155;
}

.td-scan-again {
    font-size: 0.875rem;
    color: #5454ee;
    font-weight: 500;
    text-decoration: none;
}

.td-scan-again:hover {
    text-decoration: underline;
}

.td-result-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .td-result-grid {
        grid-template-columns: 1fr 2fr;
    }
}

.td-preview-section {
    padding: 2rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .td-preview-section {
        border-bottom: none;
        border-right: 1px solid #f1f5f9;
    }
}

.td-preview-image {
    position: relative;
    width: 100%;
    max-width: 12rem;
    height: 12rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.td-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.td-scanner-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #5454ee;
    box-shadow: 0 0 10px #5454ee;
    animation: scan 2s linear infinite;
}

@keyframes scan {
    0% {
        top: 0;
    }
    50% {
        top: 100%;
    }
    100% {
        top: 0;
    }
}

.td-visit-site {
    font-size: 0.875rem;
    color: #64748b;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.td-visit-site:hover {
    color: #5454ee;
}

.td-info-section {
    padding: 2rem;
}

.td-theme-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.td-theme-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.td-theme-author {
    font-size: 0.875rem;
    color: #64748b;
}

.td-author-link {
    color: #5454ee;
    text-decoration: none;
}

.td-author-link:hover {
    text-decoration: underline;
}

.td-theme-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.td-theme-status {
    background: #dcfce7;
    color: #15803d;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
}

.td-theme-version {
    font-size: 0.75rem;
    color: #94a3b8;
}

.td-theme-description {
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.625;
    font-size: 0.875rem;
}

.td-theme-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.td-detail-item {
    background: #f8fafc;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #f1f5f9;
}

.td-detail-label {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 700;
}

.td-detail-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
}

.td-theme-actions {
    display: flex;
    gap: 1rem;
}

.td-download-btn {
    background: #5454ee;
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px rgba(84, 84, 238, 0.2);
}

.td-download-btn:hover {
    background: #3b3be0;
    box-shadow: 0 20px 25px -5px rgba(84, 84, 238, 0.2);
}

.td-info-btn {
    background: white;
    color: #334155;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    border: 1px solid #cbd5e1;
    transition: all 0.2s;
}

.td-info-btn:hover {
    border-color: #0f172a;
    color: #0f172a;
}

/* Plugins Section */
.td-plugins-section {
    border-top: 1px solid #e2e8f0;
    padding: 2rem;
    background: #f8fafc;
}

.td-plugins-title {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.td-plugins-title i {
    color: #5454ee;
}

.td-plugins-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .td-plugins-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .td-plugins-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.td-plugin-item {
    background: white;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.td-plugin-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.td-plugin-item:nth-child(1) .td-plugin-icon {
    background: #f3e8ff;
    color: #9333ea;
}

.td-plugin-item:nth-child(2) .td-plugin-icon {
    background: #dcfce7;
    color: #16a34a;
}

.td-plugin-item:nth-child(3) .td-plugin-icon {
    background: #fef9c3;
    color: #ca8a04;
}

.td-plugin-name {
    font-weight: 700;
    color: #1e293b;
    font-size: 0.875rem;
    margin: 0;
}

.td-plugin-type {
    color: #64748b;
    font-size: 0.75rem;
    margin: 0;
}

/* How It Works Section */
.td-how-section {
    padding: 5rem 0;
    background: white;
}

.td-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.td-section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.td-section-subtitle {
    color: #64748b;
    max-width: 32rem;
    margin: 0 auto;
}

.td-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .td-steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.td-step-item {
    text-align: center;
    padding: 1.5rem;
}

.td-step-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.td-step-item:nth-child(1) .td-step-icon {
    background: #dbeafe;
    color: #2563eb;
}

.td-step-item:nth-child(2) .td-step-icon {
    background: #f3e8ff;
    color: #9333ea;
}

.td-step-item:nth-child(3) .td-step-icon {
    background: #dcfce7;
    color: #16a34a;
}

.td-step-title {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.td-step-text {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
}

.td-step-text code {
    background: #f1f5f9;
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
    font-family: ui-monospace, SFMono-Regular, "SF Mono", Monaco, Inconsolata, "Roboto Mono", "Source Code Pro", monospace;
    font-size: 0.75rem;
}

/* FAQ Section */
.td-faq-section {
    padding: 5rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.td-faq-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin-bottom: 3rem;
}

.td-faq-list {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.td-faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.td-faq-item:hover {
    border-color: #cbd5e1;
}

.td-faq-item[open] {
    border-color: #5454ee;
}

.td-faq-question {
    font-weight: 700;
    color: #0f172a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    cursor: pointer;
}

.td-faq-question::-webkit-details-marker {
    display: none;
}

.td-faq-icon {
    color: #94a3b8;
    transition: transform 0.2s;
}

.td-faq-item[open] .td-faq-icon {
    transform: rotate(180deg);
}

.td-faq-answer {
    color: #64748b;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Alpine.js x-cloak utility */
[x-cloak] {
    display: none !important;
}

/* ========================================
   THEME DETECTOR WIDGET STYLES
   ======================================== */

/* Widget Container */
.td-widget {
    max-width: 56rem;
    margin: 0 auto;
}

/* Form */
.td-form {
    width: 100%;
}

/* Status Bar */
.td-status {
    position: relative;
    overflow: hidden;
    min-height: 2.5rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.td-status.show {
    opacity: 1;
}

.td-status.td-ok {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.td-status.td-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.td-status.td-progressing {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

.td-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: rgba(16, 185, 129, 0.25);
    transition: width 2.5s ease;
    z-index: 0;
}

.td-status-text {
    position: relative;
    z-index: 1;
}

/* Results Container */
.td-results {
    margin-top: 3rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.td-results.show {
    opacity: 1;
}

.td-results.td-hydrated {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Result Cards */
.td-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    margin-bottom: 2rem;
}

.td-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid #e2e8f0;
}

/* Empty State */
.td-empty-state {
    padding: 2rem;
    text-align: center;
    color: #64748b;
    font-style: italic;
}

/* Theme Card - Enhanced Design */
.td-theme {
    /* Enhanced layout handled by .td-theme-enhanced */
}

.td-theme .td-info-item {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.td-theme .td-info-item:last-child {
    border-bottom: none;
}

.td-theme .td-info-item strong {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.td-theme .td-info-item span {
    color: #334155;
    font-size: 0.875rem;
}

.td-theme .td-info-item a {
    color: #5454ee;
    text-decoration: none;
}

.td-theme .td-info-item a:hover {
    text-decoration: underline;
}

.td-url-section {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.td-url-section p {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.td-url-link {
    display: block;
    color: #5454ee;
    text-decoration: none;
    font-size: 0.875rem;
    word-break: break-all;
}

.td-url-link:hover {
    text-decoration: underline;
}

.td-screenshot-section {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.td-screenshot-section p {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.td-screenshot-container {
    background: #f8fafc;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.td-theme-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

.td-no-screenshot {
    padding: 1rem 1.5rem;
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Enhanced Theme Card Layout */
.td-theme-enhanced {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
}

@media (min-width: 768px) {
    .td-theme-enhanced {
        flex-direction: row;
        align-items: flex-start;
        gap: 2.5rem;
    }
}

.td-theme-screenshot-wrapper {
    flex-shrink: 0;
    width: 100%;
    max-width: 360px;
}

@media (min-width: 768px) {
    .td-theme-screenshot-wrapper {
        width: 360px;
    }
}

.td-theme-screenshot-wrapper .td-screenshot-container {
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: white;
    overflow: hidden;
}

.td-theme-screenshot-wrapper .td-screenshot-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.td-theme-screenshot-wrapper .td-theme-screenshot {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.td-theme-details-wrapper {
    flex: 1;
    min-width: 0;
}

.td-theme-header-enhanced {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.td-theme-name-enhanced {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.td-theme-meta-enhanced {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.td-theme-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.35rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.td-theme-badge.version {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
    border: 1px solid #93c5fd;
}

.td-theme-badge.slug {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    color: #7c3aed;
    border: 1px solid #c4b5fd;
}

.td-theme-badge.author {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #166534;
    border: 1px solid #86efac;
}

.td-theme-grid-enhanced {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .td-theme-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
}

.td-theme-info-row {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.td-theme-info-row:hover {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-color: #cbd5e1;
}

.td-theme-info-row-label {
    display: block;
    font-size: 0.65rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 0.375rem;
}

.td-theme-info-row-value {
    font-size: 0.9375rem;
    color: #0f172a;
    font-weight: 600;
    line-height: 1.4;
}

.td-theme-info-row-value a {
    color: #5454ee;
    text-decoration: none;
    transition: all 0.2s;
    border-bottom: 1px dashed #5454ee;
}

.td-theme-info-row-value a:hover {
    color: #3b3be0;
    border-bottom-style: solid;
}

.td-theme-actions-enhanced {
    margin-top: 2rem;
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
}

.td-theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.625rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.01em;
}

.td-theme-btn-primary {
    background: linear-gradient(135deg, #5454ee 0%, #4c4ce8 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(84, 84, 238, 0.25);
    border: 1px solid rgba(84, 84, 238, 0.1);
}

.td-theme-btn-primary:hover {
    background: linear-gradient(135deg, #3b3be0 0%, #3333d6 100%);
    box-shadow: 0 8px 20px rgba(84, 84, 238, 0.35);
    transform: translateY(-2px);
}

.td-theme-btn-secondary {
    background: white;
    color: #334155;
    border: 1px solid #cbd5e1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.td-theme-btn-secondary:hover {
    border-color: #94a3b8;
    background: #f8fafc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

/* Plugins Card */
.td-plugins-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
}

@media (min-width: 640px) {
    .td-plugins-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .td-plugins-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.td-plugin-item {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.td-plugin-item:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.td-plugin-name {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.td-plugin-link {
    color: #5454ee;
    text-decoration: none;
    font-size: 0.75rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.td-plugin-link:hover {
    opacity: 1;
}

.td-plugin-slug {
    color: #64748b;
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

.td-plugin-confidence {
    background: #dbeafe;
    color: #1e40af;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    display: inline-block;
}

/* Meta Info */
.td-meta-info {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.td-meta-item {
    font-size: 0.75rem;
    color: #64748b;
    background: #f8fafc;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
}

/* Integrations Card */
.td-integrations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
}

@media (min-width: 640px) {
    .td-integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .td-integrations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.td-integration-item {
    background: #fef9c3;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #fde047;
}

.td-integration-name {
    font-weight: 700;
    color: #854d0e;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.td-integration-confidence {
    background: #fef3c7;
    color: #92400e;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    display: inline-block;
}

/* ========================================
   DOMAIN CHECKER TOOL STYLES
   ======================================== */

/* Hero Section */
.domain-hero-bg {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    padding-top: 8rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.domain-hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .domain-hero-title {
        font-size: 3rem;
    }
}

.domain-hero-title-accent {
    color: #5454ee;
}

.domain-hero-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Search Container */
.domain-search-container {
    background: white;
    padding: 0.75rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    max-width: 56rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .domain-search-container {
        flex-direction: row;
        align-items: stretch;
    }
}

.domain-search-input-group {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.domain-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    z-index: 1;
}

.domain-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border-radius: 0.75rem;
    border: 2px solid #e2e8f0;
    outline: none;
    font-size: 1.125rem;
    color: #0f172a;
    background: #f8fafc;
    transition: all 0.2s;
}

.domain-search-input::placeholder {
    color: #94a3b8;
}

.domain-search-input:focus {
    outline: none;
    border-color: #5454ee;
    background: white;
    box-shadow: 0 0 0 3px rgba(84, 84, 238, 0.1);
}

.domain-extension-select {
    position: relative;
}

.domain-extension-dropdown {
    padding: 1rem 2rem 1rem 1rem;
    border-radius: 0.75rem;
    border: 2px solid #e2e8f0;
    background: #f8fafc;
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
    transition: all 0.2s;
}

.domain-extension-dropdown:focus {
    outline: none;
    border-color: #5454ee;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(84, 84, 238, 0.1);
}

.domain-extension-dropdown:hover {
    border-color: #cbd5e1;
}

@media (min-width: 640px) {
    .domain-extension-dropdown {
        min-width: 140px;
    }
}

.domain-search-button {
    background: #5454ee;
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px rgba(84, 84, 238, 0.2);
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.domain-search-button:hover:not(:disabled) {
    background: #3b3be0;
    box-shadow: 0 20px 25px -5px rgba(84, 84, 238, 0.2);
    transform: translateY(-2px);
}

.domain-search-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Result Container */
.domain-result-container {
    margin-top: 2rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.domain-result-available,
.domain-result-taken {
    background: white;
    border-radius: 1.25rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    animation: slideDown 0.3s ease;
    position: relative;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.domain-result-available {
    border-left: 5px solid #22c55e;
}

.domain-result-taken {
    border-left: 5px solid #ef4444;
}

.domain-result-content {
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.domain-result-icon {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.domain-result-icon-success {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #22c55e;
    animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
    }
    50% {
        box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
    }
}

.domain-result-icon-error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #ef4444;
}

.domain-result-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
}

.domain-result-text {
    color: #64748b;
    font-size: 1.0625rem;
    margin: 0;
    line-height: 1.5;
}

.domain-result-domain {
    font-weight: 800;
    color: #0f172a;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 0.125rem 0.5rem;
    border-radius: 0.375rem;
    font-family: ui-monospace, SFMono-Regular, "SF Mono", Monaco, Inconsolata, "Roboto Mono", "Source Code Pro", monospace;
}

.domain-result-actions {
    padding: 1.75rem 2.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: center;
}

.domain-register-button {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 1rem 3rem;
    border-radius: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.3);
    font-size: 1.0625rem;
    letter-spacing: 0.01em;
}

.domain-register-button:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    box-shadow: 0 20px 25px -5px rgba(34, 197, 94, 0.4);
    transform: translateY(-3px) scale(1.02);
}

.domain-register-button:active {
    transform: translateY(-1px) scale(0.98);
}

/* Alternatives Section */
.domain-alternatives-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1.25rem 0;
    padding: 1.75rem 2.5rem 0.75rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.domain-alternatives-title::before {
    content: '💡';
    font-size: 1.25rem;
}

.domain-alternatives-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.domain-alternative-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2.5rem;
    background: white;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    position: relative;
}

.domain-alternative-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #5454ee 0%, #3b3be0 100%);
    opacity: 0;
    transition: opacity 0.2s;
}

.domain-alternative-item:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding-left: 2.75rem;
}

.domain-alternative-item:hover::before {
    opacity: 1;
}

.domain-alternative-item:last-child {
    border-bottom: none;
}

.domain-alternative-name {
    font-weight: 700;
    color: #0f172a;
    font-size: 1.0625rem;
    font-family: ui-monospace, SFMono-Regular, "SF Mono", Monaco, Inconsolata, "Roboto Mono", "Source Code Pro", monospace;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
}

.domain-alternative-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.domain-alternative-price {
    font-weight: 800;
    color: #5454ee;
    font-size: 1.25rem;
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    padding: 0.375rem 0.875rem;
    border-radius: 0.5rem;
}

.domain-alternative-buy {
    background: linear-gradient(135deg, #5454ee 0%, #4c4ce8 100%);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 0.625rem;
    font-weight: 700;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(84, 84, 238, 0.2);
    letter-spacing: 0.01em;
}

.domain-alternative-buy:hover {
    background: linear-gradient(135deg, #3b3be0 0%, #3333d6 100%);
    box-shadow: 0 8px 16px rgba(84, 84, 238, 0.3);
    transform: translateY(-2px);
}

.domain-alternative-buy:active {
    transform: translateY(0);
}

/* Popular Extensions */
.domain-popular-extensions {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.domain-popular-label {
    color: #64748b;
    font-weight: 600;
    font-size: 0.875rem;
}

.domain-extension-tag {
    background: white;
    color: #5454ee;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.2s;
}

.domain-extension-tag:hover {
    background: #5454ee;
    color: white;
    border-color: #5454ee;
    transform: translateY(-1px);
}

/* Why Section */
.domain-why-section {
    padding: 5rem 0;
    background: white;
}

.domain-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .domain-why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.domain-why-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2rem;
}

.domain-why-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.domain-feature-item {
    display: flex;
    gap: 1rem;
}

.domain-feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.domain-feature-title {
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem 0;
    font-size: 1.125rem;
}

.domain-feature-text {
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.domain-themes-cta {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.domain-themes-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.domain-themes-text {
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.domain-themes-image {
    margin-bottom: 2rem;
}

.domain-themes-img {
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

.domain-themes-action {
    display: flex;
    justify-content: center;
}

.domain-themes-button {
    display: inline-block;
    background: #5454ee;
    color: white;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px rgba(84, 84, 238, 0.2);
}

.domain-themes-button:hover {
    background: #3b3be0;
    box-shadow: 0 20px 25px -5px rgba(84, 84, 238, 0.2);
    transform: translateY(-2px);
}

/* FAQ Section */
.domain-faq-section {
    padding: 5rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.domain-faq-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin-bottom: 3rem;
}

.domain-faq-list {
    max-width: 44rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.domain-faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.2s;
}

.domain-faq-item:hover {
    border-color: #cbd5e1;
}

.domain-faq-item[open] {
    border-color: #5454ee;
}

.domain-faq-question {
    font-weight: 700;
    color: #0f172a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    cursor: pointer;
    padding: 1.25rem 1.5rem;
    margin: 0;
    font-size: 1rem;
}

.domain-faq-question::-webkit-details-marker {
    display: none;
}

.domain-faq-icon {
    color: #94a3b8;
    transition: transform 0.2s;
}

.domain-faq-item[open] .domain-faq-icon {
    transform: rotate(180deg);
}

.domain-faq-answer {
    color: #64748b;
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* Alpine.js x-cloak utility */
[x-cloak] {
    display: none !important;
}

/* ========================================
   CSS MINIFIER TOOL STYLES
   ======================================== */

/* Hero Section */
.css-minifier-hero-bg {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    padding-top: 8rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.css-minifier-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .css-minifier-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .css-minifier-container {
        padding: 0 2rem;
    }
}

.css-minifier-hero-content {
    text-align: center;
    max-width: 56rem;
    margin: 0 auto 3rem;
}

.css-minifier-hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .css-minifier-hero-title {
        font-size: 3rem;
    }
}

.css-minifier-hero-title-accent {
    color: #5454ee;
}

.css-minifier-hero-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tool Container */
.css-minifier-tool-container {
    margin: 0 auto;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.css-minifier-tool-header {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.css-minifier-tool-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.css-minifier-tool-dots {
    display: flex;
    gap: 0.5rem;
}

.css-minifier-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.css-minifier-dot-red {
    background: #ef4444;
}

.css-minifier-dot-yellow {
    background: #facc15;
}

.css-minifier-dot-green {
    background: #22c55e;
}

.css-minifier-filename {
    font-family: ui-monospace, SFMono-Regular, "SF Mono", Monaco, Inconsolata, "Roboto Mono", "Source Code Pro", monospace;
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.css-minifier-tool-header-right {
    display: flex;
    gap: 0.75rem;
}

.css-minifier-minify-btn {
    background: #5454ee;
    color: white;
    font-weight: 700;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(84, 84, 238, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.css-minifier-minify-btn:hover {
    background: #3b3be0;
    box-shadow: 0 8px 20px rgba(84, 84, 238, 0.3);
    transform: translateY(-1px);
}

.css-minifier-clear-btn {
    background: white;
    color: #64748b;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.875rem;
}

.css-minifier-clear-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #334155;
}

/* Tool Body */
.css-minifier-tool-body {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .css-minifier-tool-body {
        grid-template-columns: 1fr 1fr;
    }
}

.css-minifier-input-section,
.css-minifier-output-section {
    display: flex;
    flex-direction: column;
}

.css-minifier-input-section {
    border-bottom: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
    .css-minifier-input-section {
        border-bottom: none;
        border-right: 1px solid #e2e8f0;
    }
}

.css-minifier-input-header,
.css-minifier-output-header {
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.css-minifier-input-label,
.css-minifier-output-label {
    font-weight: 700;
    color: #334155;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.css-minifier-char-count {
    font-family: ui-monospace, SFMono-Regular, "SF Mono", Monaco, Inconsolata, "Roboto Mono", "Source Code Pro", monospace;
    font-size: 0.75rem;
    color: #94a3b8;
}

.css-minifier-output-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.css-minifier-saved-text {
    font-weight: 700;
    color: #22c55e;
    font-size: 0.875rem;
}

.css-minifier-copy-btn {
    background: #f1f5f9;
    color: #64748b;
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.css-minifier-copy-btn:hover {
    background: #e2e8f0;
    color: #334155;
}

.css-minifier-input-textarea,
.css-minifier-output-textarea {
    width: 100%;
    min-height: 20rem;
    padding: 1.5rem;
    border: none;
    outline: none;
    font-family: ui-monospace, SFMono-Regular, "SF Mono", Monaco, Inconsolata, "Roboto Mono", "Source Code Pro", monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    resize: vertical;
    background: white;
}

.css-minifier-input-textarea::placeholder {
    color: #cbd5e1;
}

.css-minifier-output-textarea {
    background: #f8fafc;
    color: #334155;
}

.css-minifier-input-textarea:focus {
    background: #fafbfc;
}

/* Stats Bar */
.css-minifier-stats-bar {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid #e2e8f0;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

@media (min-width: 640px) {
    .css-minifier-stats-bar {
        gap: 5rem;
    }
}

.css-minifier-stat-item {
    text-align: center;
}

.css-minifier-stat-label {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.css-minifier-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #334155;
    font-family: ui-monospace, SFMono-Regular, "SF Mono", Monaco, Inconsolata, "Roboto Mono", "Source Code Pro", monospace;
}

.css-minifier-stat-accent {
    color: #5454ee;
}

/* Why Section */
.css-minifier-why-section {
    padding: 5rem 0;
    background: white;
}

.css-minifier-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .css-minifier-why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.css-minifier-why-content {
    max-width: 32rem;
}

.css-minifier-why-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.css-minifier-why-text {
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.625;
}

.css-minifier-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.css-minifier-feature-item {
    display: flex;
    gap: 1rem;
}

.css-minifier-feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.css-minifier-feature-icon-speed {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #2563eb;
}

.css-minifier-feature-icon-server {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #16a34a;
}

.css-minifier-feature-icon-seo {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #d97706;
}

.css-minifier-feature-content {
    flex: 1;
}

.css-minifier-feature-title {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.css-minifier-feature-text {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}

.css-minifier-themes-cta {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.css-minifier-themes-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.css-minifier-themes-text {
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.css-minifier-themes-image {
    margin-bottom: 2rem;
}

.css-minifier-themes-img {
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

.css-minifier-themes-button {
    display: inline-block;
    background: #5454ee;
    color: white;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px rgba(84, 84, 238, 0.2);
}

.css-minifier-themes-button:hover {
    background: #3b3be0;
    box-shadow: 0 20px 25px -5px rgba(84, 84, 238, 0.2);
    transform: translateY(-2px);
}

/* FAQ Section */
.css-minifier-faq-section {
    padding: 5rem 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.css-minifier-faq-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin-bottom: 3rem;
}

.css-minifier-faq-list {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.css-minifier-faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.2s;
}

.css-minifier-faq-item:hover {
    border-color: #cbd5e1;
}

.css-minifier-faq-item[open] {
    border-color: #5454ee;
}

.css-minifier-faq-question {
    font-weight: 700;
    color: #0f172a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    cursor: pointer;
    padding: 1.25rem 1.5rem;
    margin: 0;
    font-size: 1rem;
}

.css-minifier-faq-question::-webkit-details-marker {
    display: none;
}

.css-minifier-faq-icon {
    color: #94a3b8;
    transition: transform 0.2s;
}

.css-minifier-faq-item[open] .css-minifier-faq-icon {
    transform: rotate(180deg);
}

.css-minifier-faq-answer {
    color: #64748b;
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}
