/* CSS Reset */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat+Underline:ital,wght@0,100..900;1,100..900&family=Playwrite+IT+Moderna:wght@100..400&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Ubuntu", sans-serif;
    background: #111827;
    color: #e5e7eb;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

header::before {
    content: 'Aitoolsrk.com';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    font-weight: 900;
    color: rgba(96, 165, 250, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    letter-spacing: 1px;
    font-family: "Ubuntu", sans-serif;
}

header h1 {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #60a5fa, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

#imageUpload {
    display: none;
}

.upload-btn {
    background: linear-gradient(to right, #3b82f6, #10b981);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.upload-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(59, 130, 246, 0.5);
}

.image-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 3rem;
    background: #1f2937;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: borderBlink 2s infinite;
}

.comparison-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    border: 1px solid transparent;
    animation: borderGlow 2s infinite;
}

@keyframes borderBlink {

    0%,
    100% {
        border: 1px solid rgba(96, 165, 250, 0.1);
    }

    50% {
        border: 1px solid rgb(96, 165, 250);
    }
}

@keyframes borderGlow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(96, 165, 250, 0.1);
    }

    50% {
        box-shadow: 0 0 15px rgba(0, 115, 255, 0.5);
    }
}

.comparison-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #60a5fa;
    left: 50%;
    cursor: ew-resize;
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

.slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #60a5fa;
    border-radius: 50%;
    border: 3px solid #fff;
}

/* Modern Notification Styles */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.notification {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.95), rgba(17, 24, 39, 0.95));
    backdrop-filter: blur(8px);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 10px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 350px;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-success {
    border-left: 4px solid #34d399;
}

.notification-icon {
    font-size: 1.5rem;
    background: linear-gradient(to right, #60a5fa, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: bounce 0.5s ease;
}

.notification-content {
    flex: 1;
}

.notification-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.notification-message {
    color: #9ca3af;
    font-size: 0.875rem;
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(to right, #60a5fa, #34d399);
    border-radius: 0 0 0 12px;
    animation: progress 3s linear;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

@keyframes progress {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}

/* Enhanced Controls Section */
.controls {
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.95), rgba(17, 24, 39, 0.95));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(96, 165, 250, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    margin: 2rem auto;
    max-width: 1200px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

.basic-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.control-group {
    background: rgba(55, 65, 81, 0.3);
    padding: 1.8rem;
    border-radius: 16px;
    border: 1px solid rgba(96, 165, 250, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.control-group:hover {
    background: rgba(55, 65, 81, 0.5);
    border-color: rgba(96, 165, 250, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
}

.control-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e5e7eb;
    font-weight: 500;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.control-group label::before {
    font-size: 1.2rem;
}

/* Control Icons */
.control-group[for="brightness"] label::before {
    content: '☀️';
}

.control-group[for="contrast"] label::before {
    content: '◐';
}

.control-group[for="saturation"] label::before {
    content: '🎨';
}

.control-group[for="sharpness"] label::before {
    content: '✨';
}

.control-group[for="noise"] label::before {
    content: '🔍';
}

.control-group[for="gamma"] label::before {
    content: '📊';
}

.control-group[for="vibrance"] label::before {
    content: '💫';
}

.control-group[for="clarity"] label::before {
    content: '🌟';
}

/* Enhanced AI Controls */
.ai-controls {
    background: linear-gradient(165deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    border: 2px solid rgba(96, 165, 250, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin: 2.5rem 0;
    position: relative;
}

.ai-controls::before {
    content: '🤖';
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 40px;
    opacity: 0.1;
    transform: rotate(15deg);
}

.ai-controls::after {
    content: 'AI Enhanced';
    position: absolute;
    top: -12px;
    left: 24px;
    background: linear-gradient(to right, #60a5fa, #34d399);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
}

/* Enhanced AI Controls Select Styling */
.ai-controls select {
    width: 100%;
    padding: 1rem;
    background: rgba(55, 65, 81, 0.3);
    color: #e5e7eb;
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-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='%2360a5fa' 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 1rem center;
    background-size: 1.2em;
    padding-right: 3rem;
}

.ai-controls select:hover {
    background-color: rgba(75, 85, 99, 0.3);
    border-color: rgba(96, 165, 250, 0.4);
    transform: translateY(-2px);
}

.ai-controls select:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}

.ai-controls select option {
    background: #1f2937;
    color: #e5e7eb;
    padding: 1rem;
}

.ai-controls select option:hover {
    background: #374151;
}

.ai-controls .control-group {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(96, 165, 250, 0.15);
    backdrop-filter: blur(10px);
}

.ai-controls .control-group[for="aiEnhance"] label::before {
    content: '🤖';
}

.ai-controls .control-group[for="aiStrength"] label::before {
    content: '💪';
}

/* Add an elegant hover effect for the AI section */
.ai-controls .control-group:hover {
    background: rgba(31, 41, 55, 0.7);
    border-color: rgba(96, 165, 250, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
}

.value-indicator {
    position: absolute;
    top: 1.8rem;
    right: 1.8rem;
    background: linear-gradient(to right, #60a5fa, #34d399);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    color: white;
    font-weight: 500;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.control-group:hover .value-indicator {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced Export Options */
.export-options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    margin-top: 2rem;
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.3), rgba(17, 24, 39, 0.3));
    border-radius: 16px;
    border: 1px solid rgba(96, 165, 250, 0.1);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.export-options::before {
    content: '📥';
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 40px;
    opacity: 0.1;
    transform: rotate(15deg);
}

.export-options select {
    min-width: 140px;
    padding: 0.875rem 2.5rem 0.875rem 1.25rem;
    background: rgba(55, 65, 81, 0.5);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 12px;
    color: #e5e7eb;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    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='%2360a5fa' 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 1rem center;
    background-size: 1.2em;
}

.export-options select:hover {
    background-color: rgba(75, 85, 99, 0.5);
    border-color: rgba(96, 165, 250, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(96, 165, 250, 0.2);
}

.export-options button {
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    min-width: 140px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.export-options button::before {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

#download {
    background: linear-gradient(135deg, #3b82f6, #10b981);
    border: 1px solid rgba(96, 165, 250, 0.2);
}

#download:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(59, 130, 246, 0.5);
}

#download:hover::before {
    transform: scale(1.2);
}

.reset-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.reset-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(239, 68, 68, 0.5);
}

.reset-btn:hover::before {
    animation: spin 0.5s ease;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive Export Options */
@media (max-width: 768px) {
    .export-options {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .export-options select,
    .export-options button {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .export-options {
        margin: 1rem;
        padding: 1.25rem;
    }

    .export-options select,
    .export-options button {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
}

/* AI Loading Animation */
.ai-loader-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.ai-loader {
    position: relative;
    width: 120px;
    height: 120px;
}

.ai-loader::before,
.ai-loader::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(to right, #60a5fa, #34d399);
    animation: pulse 2s ease-out infinite;
}

.ai-loader::after {
    animation-delay: -1s;
}

.ai-loader-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: rgba(17, 24, 39, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-loader-icon {
    width: 40px;
    height: 40px;
    border: 3px solid #1f2937;
    border-top-color: #60a5fa;
    border-right-color: #34d399;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.ai-loader-text {
    margin-top: 2rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    animation: fade-in 0.3s ease-out forwards;
}

.ai-loader-progress {
    margin-top: 1rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fade-in {
    to {
        opacity: 1;
    }
}

/* Information Sections Styling */
.info-section {
    margin-top: 4rem;
    padding: 2rem 0;
}

.info-card {
    background: #1f2937;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.info-card h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #60a5fa, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #60a5fa, #34d399);
    opacity: 0.3;
    z-index: 0;
}

.step-card {
    background: rgba(55, 65, 81, 0.5);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(96, 165, 250, 0.1);
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
    z-index: 1;
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(75, 85, 99, 0.5);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.step-card:nth-child(5) {
    background: linear-gradient(145deg, rgba(55, 65, 81, 0.5), rgba(17, 24, 39, 0.5));
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.step-card:nth-child(5) h3 {
    background: linear-gradient(to right, #60a5fa, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-card:nth-child(5) ul li::before {
    content: '🤖';
    font-size: 1rem;
}

.step-card:nth-child(5):hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(96, 165, 250, 0.15);
    background: linear-gradient(145deg, rgba(75, 85, 99, 0.5), rgba(31, 41, 55, 0.5));
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #60a5fa, #34d399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.step-card h3 {
    color: #60a5fa;
    font-size: 1.25rem;
    margin: 1rem 0;
    text-align: center;
}

.step-card p {
    color: #e5e7eb;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.step-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.step-card ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: #d1d5db;
}

.step-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #60a5fa;
}

.step-card:hover ul li::before {
    animation: arrow-bounce 1s infinite;
}

@keyframes arrow-bounce {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    background: #374151;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: #4b5563;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.feature-item h3 {
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

/* Enhanced About Tool Section */
.about-tool {
    background: linear-gradient(165deg, #1f2937, #111827);
    border: 1px solid rgba(96, 165, 250, 0.1);
    position: relative;
    overflow: hidden;
}

.about-tool::before {
    content: '🎨';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 120px;
    opacity: 0.05;
    transform: rotate(15deg);
}

.about-tool h2 {
    display: inline-block;
    padding-bottom: 0.5rem;
    position: relative;
}

.about-tool h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(to right, #60a5fa, #34d399);
    border-radius: 3px;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.about-section {
    background: rgba(55, 65, 81, 0.3);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(96, 165, 250, 0.1);
    transition: all 0.3s ease;
}

.about-section:hover {
    transform: translateY(-5px);
    background: rgba(55, 65, 81, 0.5);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.about-section h3 {
    color: #60a5fa;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-section h3::before {
    content: '✨';
    font-size: 1.5rem;
}

.about-section p {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.highlight-text {
    color: #34d399;
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .comparison-slider {
        height: 400px;
    }

    header h1 {
        font-size: 2rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-card h2 {
        font-size: 1.5rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .steps-container::before {
        display: none;
    }

    .step-card {
        padding: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #60a5fa, #34d399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.scroll-to-top::before {
    content: '↑';
    color: white;
    font-size: 24px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* Modern Footer Watermark */
.site-footer {
    padding: 2rem 0;
    margin-top: 4rem;
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.95), rgba(17, 24, 39, 0.95));
    border-top: 1px solid rgba(96, 165, 250, 0.1);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            rgba(96, 165, 250, 0.3),
            transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
}

.logo-wrapper {
    position: relative;
}

.logo-animation {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #60a5fa, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite;
    position: relative;
}

.logo-animation::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #60a5fa, #34d399);
    transform: scaleX(0);
    transform-origin: left;
    animation: lineWidth 3s ease-in-out infinite;
}

.footer-text {
    text-align: center;
}

.copyright {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.copyright-year {
    color: #9ca3af;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    opacity: 0.8;
    font-weight: 500;
    letter-spacing: 0.5px;
    background: linear-gradient(to right, rgba(96, 165, 250, 0.2), rgba(52, 211, 153, 0.2));
    padding: 4px 12px;
    border-radius: 999px;
    display: inline-block;
}

.heart {
    animation: heartbeat 1.5s ease-in-out infinite;
    display: inline-block;
}

.owner-name {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #60a5fa, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.owner-name::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #60a5fa, #34d399);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.owner-name:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.tagline {
    color: #9ca3af;
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes glow {

    0%,
    100% {
        filter: drop-shadow(0 0 5px rgba(96, 165, 250, 0.2));
    }

    50% {
        filter: drop-shadow(0 0 15px rgba(96, 165, 250, 0.4));
    }
}

@keyframes lineWidth {

    0%,
    100% {
        transform: scaleX(0);
    }

    50% {
        transform: scaleX(1);
    }
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
}

/* Beta Banner Styles */
.beta-banner {
    background: linear-gradient(135deg, #2a2a72 0%, #009ffd 74%);
    padding: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.beta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

.beta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: white;
    font-family: 'Inter', sans-serif;
}

.beta-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.beta-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #2a2a72;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.beta-button:hover {
    transform: translateY(-2px);
}

.button-icon {
    transition: transform 0.3s ease;
}

.beta-button:hover .button-icon {
    transform: translateX(4px);
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}