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;
}

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

.main-logo {
    height: 40px;
    width: auto;
}

/* Title Styles */
.main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
}

.highlight {
    color: #FF6B6B;
    font-weight: 700;
}

/* Search Container Styles */
.search-container {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.search-box {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-size: 1rem;
    color: #333;
    background: transparent;
}

.search-input:focus {
    outline: none;
}

.search-input::placeholder {
    color: #999;
}

.search-button {
    padding: 1rem 2rem;
    background: #A855F7;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background: #9333EA;
}

/* Features List Styles */
.features-description {
    margin-top: 2rem;
    color: #4a5568;
    font-size: 1rem;
    text-align: left;
}

.features-list {
    margin-top: 0.8rem;
    padding-left: 1.5rem;
    text-align: left;
}

.features-list li {
    margin-bottom: 0.5rem;
    position: relative;
    line-height: 1.5;
}

.features-list li::before {
    content: "✓";
    color: #6b46c1;
    position: absolute;
    left: -1.2rem;
    font-weight: bold;
}

/* 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-box {
        flex-direction: column;
        padding: 1rem;
    }

    .search-button {
        width: 100%;
    }
}

/* Main layout styles */
.search-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.search-container {
    max-width: 800px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    z-index: 1;
}

.search-description {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Search box styles */
.search-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0 1rem;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.search-input {
    flex-grow: 1;
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    border: 2px solid #e0e0e0;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background-color: #fff;
}

.search-input:focus {
    border-color: #6b46c1;
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.2);
    outline: none;
}

.search-button {
    padding: 0.9rem 2rem;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, #6b46c1, #9f7aea);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 180px;
}

.search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 15px rgba(107, 70, 193, 0.3);
}

.search-button:active {
    transform: translateY(0);
}

.button-icon {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
}

.button-text {
    position: relative;
    z-index: 2;
}

/* Sparkle animation effects */
.sparkle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.8), 
                0 0 20px 6px rgba(255, 215, 0, 0.6);
    opacity: 0;
    animation: sparkle-float 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes sparkle-float {
    0% {
        transform: translateY(0) scale(0.2) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) scale(0.9) rotate(45deg);
        opacity: 0;
    }
}

.pulse {
    animation: pulse 1s ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

/* Results section styling */
.results-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.results-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .results-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.result-category {
    background-color: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.result-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.result-category:nth-child(1) {
    border-left-color: #6b46c1;
}

.result-category:nth-child(2) {
    border-left-color: #3182ce;
}

.result-category:nth-child(3) {
    border-left-color: #38a169;
}

.result-category:nth-child(4) {
    border-left-color: #dd6b20;
}

.result-category h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #2d3748;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

.result-content {
    min-height: 150px;
}

.result-status {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.result-status.available {
    background-color: #c6f6d5;
    color: #22543d;
}

.result-status.unavailable {
    background-color: #fed7d7;
    color: #822727;
}

.result-status.information {
    background-color: #e9e9ff;
    color: #3c366b;
}

.available-text {
    color: #38a169;
    font-weight: 600;
}

.unavailable-text {
    color: #e53e3e;
    font-weight: 600;
}

.domain-alternatives {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #718096;
}

.domain-alternatives span {
    background-color: #f7fafc;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-right: 0.3rem;
}

/* Loading spinner */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(107, 70, 193, 0.1);
    border-top: 4px solid #6b46c1;
    border-radius: 50%;
    margin: 30px auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Disclaimer box */
.disclaimer-box {
    background-color: #edf2f7;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2.5rem 0;
    font-size: 0.9rem;
}

.disclaimer-text {
    margin: 0;
    color: #4a5568;
    line-height: 1.6;
}

/* North star specific styling for the button */
.search-button .button-icon {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    animation: star-twinkle 1.5s ease-in-out infinite alternate;
}

@keyframes star-twinkle {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.2);
    }
}

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

.related-tools h2 {
    font-size: 24px;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
    font-weight: 600;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
}

.tool-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

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

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

.tool-thumbnail {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

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

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

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

.tool-card h3 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    padding: 0 1.5rem;
    color: #333;
    font-weight: 600;
}

.tool-card p {
    font-size: 0.9rem;
    color: #666;
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}

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

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

@media (max-width: 992px) {
    .info-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .info-container {
        grid-template-columns: 1fr;
    }
}

.info-section {
    background-color: 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);
}
