body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #fff5f5 0%, #f3e8ff 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

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

/* Header Styles */
.main-header {
    text-align: center;
    padding: 2rem 0;
    position: relative;
}

.logo-container {
    margin-bottom: 1.5rem;
}

.main-logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
}

.main-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.highlight {
    color: #9747FF;
    font-weight: 600;
}

/* Search Section Styles */
.search-section {
    max-width: 800px;
    margin: 2rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(151, 71, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Floating Sparkles */
.search-section::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239747FF'%3E%3Cpath d='M12 2L15.09 8.26L22 9.27L17 14.14L18.18 21.02L12 17.77L5.82 21.02L7 14.14L2 9.27L8.91 8.26L12 2Z'/%3E%3C/svg%3E") no-repeat center center;
    background-size: contain;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

.search-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9747FF, #C963FF);
}

/* Additional Sparkle Elements */
.sparkle-1 {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239747FF'%3E%3Cpath d='M12 2L15.09 8.26L22 9.27L17 14.14L18.18 21.02L12 17.77L5.82 21.02L7 14.14L2 9.27L8.91 8.26L12 2Z'/%3E%3C/svg%3E") no-repeat center center;
    background-size: contain;
    opacity: 0.2;
    animation: float 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

.sparkle-2 {
    position: absolute;
    bottom: 15%;
    right: 15%;
    width: 15px;
    height: 15px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239747FF'%3E%3Cpath d='M12 2L15.09 8.26L22 9.27L17 14.14L18.18 21.02L12 17.77L5.82 21.02L7 14.14L2 9.27L8.91 8.26L12 2Z'/%3E%3C/svg%3E") no-repeat center center;
    background-size: contain;
    opacity: 0.2;
    animation: float 3.5s ease-in-out infinite;
    animation-delay: 1s;
}

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

.search-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.search-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #9747FF;
}

.check-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #9747FF, #C963FF);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.check-button:hover {
    transform: translateY(-2px);
}

.sparkle {
    font-size: 1.2rem;
    animation: sparkle 2s infinite;
}

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

.search-description {
    color: #666;
    line-height: 1.6;
    margin-top: 1rem;
}

/* Related Tools Section */
.related-tools {
    margin: 4rem auto;
    max-width: 1200px;
    padding: 0 2rem;
}

.related-tools h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

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

.tool-card {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
}

/* Tool Info Section */
.tool-info {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 2rem;
}

.info-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
}

.info-section {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-section h3 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.info-content {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

.info-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-content li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
}

.version {
    font-family: monospace;
    background: #f0f0f0;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.feature-request-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.feature-request-button:hover {
    background: #e0e0e0;
    transform: translateY(-1px);
}

/* Features List Styles */
.features-list {
    max-width: 600px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.checkmark {
    color: #A855F7;
    font-size: 1.2rem;
}

.feature-item p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

/* Footer Styles */
.dark-footer {
    background-color: #1A1A1A;
    color: white;
    width: 100%;
    margin-top: 6rem;
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.footer-logo-section {
    flex: 1;
}

.footer-logo {
    height: 24px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 1rem 0;
}

.footer-links-section {
    display: flex;
    gap: 4rem;
}

.footer-column h3 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-links-section {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-column {
        text-align: center;
    }

    .footer-logo-section {
        text-align: center;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-container {
        padding: 1rem;
    }

    .main-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .search-container {
        flex-direction: column;
    }

    .info-container {
        grid-template-columns: 1fr;
    }

    .tool-info {
        padding: 1rem;
    }

    .main-logo {
        height: 35px;
    }
    
    .search-section::after,
    .sparkle-1,
    .sparkle-2 {
        display: none;
    }
}

/* Results Section Styles */
.results-container {
    margin-top: 2rem;
    animation: fadeIn 0.5s ease;
}

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

.result-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.result-card h3 {
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.result-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.result-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.result-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

.status.available {
    background: rgba(39, 174, 96, 0.1);
    color: #27AE60;
}

.status.unavailable {
    background: rgba(235, 87, 87, 0.1);
    color: #EB5757;
}

.recommendation {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.recommendation p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    line-height: 1.3;
}

.recommendation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recommendation li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.3rem;
    color: #666;
    font-size: 0.8rem;
    line-height: 1.3;
}

.recommendation li:before {
    content: "•";
    color: #9747FF;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.error-message {
    color: #EB5757;
    background: rgba(235, 87, 87, 0.1);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    display: none;
}

/* Main Toolbox Card */
.main-toolbox {
    border: 2px solid rgba(151, 71, 255, 0.2);
}

.main-gradient {
    background: linear-gradient(135deg, rgba(151, 71, 255, 0.1), rgba(201, 99, 255, 0.1));
}

.domain-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.domain {
    font-family: monospace;
    font-size: 0.9rem;
    color: #333;
}

.domain.available {
    color: #27AE60;
}

.domain.taken {
    color: #EB5757;
}

/* Form Styles */
.form-section {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
}

.form-input, .form-select {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus, .form-select:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.2);
    outline: none;
}

.generate-button {
    margin-top: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.generate-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.form-description {
    margin-top: 20px;
    text-align: center;
    color: #666;
    font-size: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Results Section Styles */
.results-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.results-section h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
    font-size: 24px;
}

.checklist-container {
    max-width: 800px;
    margin: 0 auto;
}

.checklist-header {
    margin-bottom: 30px;
    text-align: center;
}

.checklist-header h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 5px;
}

.checklist-header p {
    color: #666;
    font-size: 16px;
}

.checklist-step {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #7c3aed;
}

.checklist-step h4 {
    color: #7c3aed;
    margin-bottom: 15px;
    font-size: 18px;
}

.checklist-details p {
    margin-bottom: 15px;
    color: #555;
}

.checklist-details h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    font-size: 16px;
}

.checklist-details ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.checklist-details li {
    margin-bottom: 8px;
    color: #555;
}

.print-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 30px auto 0;
    padding: 12px 24px;
    background-color: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.print-button:hover {
    background-color: #2563eb;
}

.print-button .icon {
    font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .form-container {
        padding: 15px;
    }
    
    .checklist-step {
        padding: 15px;
    }
    
    .print-button {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
    }
    
    .main-header, .related-tools, .tool-info, .dark-footer, .form-section, .print-button, .background {
        display: none !important;
    }
    
    .results-section {
        display: block !important;
        box-shadow: none;
        margin: 0;
        padding: 0;
    }
    
    .checklist-step {
        break-inside: avoid;
        border: 1px solid #ddd;
        margin-bottom: 15px;
    }
}

/* Form Step Styles */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
    max-width: 800px;
    margin: 0 auto;
}

.form-step.active {
    display: block;
}

.step-title {
    font-size: 20px;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Option Cards */
.option-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.option-card {
    width: 130px;
    padding: 24px 15px;
    background: #f8f9fa;
    border: 2px solid #eaeaea;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.option-card.selected {
    background: rgba(124, 58, 237, 0.05);
    border-color: #7c3aed;
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.15);
}

.option-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.option-label {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

/* Navigation Buttons */
.form-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

.next-button, .back-button {
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
    text-align: center;
}

.next-button {
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

.next-button:hover:not([disabled]) {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(59, 130, 246, 0.25);
}

.next-button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

.back-button {
    background: transparent;
    color: #555;
    border: 1px solid #e0e0e0;
}

.back-button:hover {
    background: #f3f4f6;
    color: #333;
}

/* Center single button */
button.next-button:only-child {
    margin: 30px auto 0;
    display: block;
}

/* Recommendation Box */
.recommendation-box {
    background: #f9f5ff;
    border: 1px solid #e9d8fd;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 35px;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.08);
}

.recommendation-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.recommendation-icon {
    font-size: 36px;
    line-height: 1;
}

.recommendation-title {
    font-size: 22px;
    color: #7c3aed;
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.recommendation-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Form Fields */
.form-field {
    margin-bottom: 20px;
}

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

.form-input, .form-select {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #fff;
    color: #333;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-input:focus, .form-select:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
    outline: none;
}

/* Generate button */
.generate-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 28px;
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

.generate-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(59, 130, 246, 0.25);
}

/* Container Width Adjustment */
.tool-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Button Icon Styles */
.button-icon {
    display: inline-block;
    font-size: 14px;
    vertical-align: middle;
    line-height: 1;
    margin-left: 6px;
    margin-right: 6px;
}

.back-button .button-icon {
    margin-left: 0;
}

.next-button .button-icon,
.generate-button .button-icon {
    margin-right: 0;
}

/* Additional button refinements */
.back-button {
    background: #f8f9fa;
    font-weight: 400;
    color: #666;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.back-button:hover {
    background: #f3f4f6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Disclaimer Box */
.disclaimer-box {
    background-color: rgba(253, 224, 71, 0.15);
    border-radius: 10px;
    padding: 16px 20px;
    margin: 30px 0;
    border-left: 4px solid #fbbf24;
}

.disclaimer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.disclaimer-text strong {
    color: #333;
}

/* Actions Container */
.actions-container {
    display: flex;
    gap: 16px;
    margin: 30px 0;
    justify-content: center;
}

.start-over-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #f8f9fa;
    color: #666;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.start-over-button:hover {
    background-color: #f3f4f6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    color: #333;
}

/* Print Footer */
.print-footer {
    display: none;
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.print-footer p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.print-logo {
    height: 30px;
    margin: 0 auto;
}

/* Print Styles Enhancement */
@media print {
    .form-section {
        display: none !important;
    }
    
    .print-footer {
        display: block !important;
        page-break-inside: avoid;
    }
    
    .actions-container, 
    .related-tools, 
    .tool-info {
        display: none !important;
    }
    
    .disclaimer-box {
        border: 1px solid #ddd;
        background-color: #f9f9f9;
        page-break-inside: avoid;
    }
}
