/* Park Domain Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #1e3a8a;
    --secondary-dark: #1e293b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --dark-bg: #0f172a;
    --light-bg: #1e293b;
    --lighter-bg: #334155;
    --card-bg: #1e293b;
    --border-color: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 50px rgba(37, 99, 235, 0.3);
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-shine: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background: var(--dark-bg);
    min-height: 100vh;
    color: var(--text-primary);
    position: relative;
    overflow-x: hidden;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Modern Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(30, 58, 138, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Subtle Grid Pattern */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

/* Footer Styles */
.footer {
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    text-align: center;
    position: relative;
    z-index: 100;
    margin-top: 0;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer-text {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-logo img {
    height: 28px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-logo:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* Main Hero Container */
.main-container {
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px 60px;
    position: relative;
    z-index: 100;
}

/* Abstract Background Decoration */
.background-decoration {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.background-decoration::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.background-decoration::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -25%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Content Layout */
.content-wrapper {
    width: 100%;
    max-width: 1280px;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Domain Title */
.domain-name {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 50%, #f8fafc 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.04em;
    line-height: 1.1;
    position: relative;
    display: inline-block;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.domain-name::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.4);
}

.domain-name:hover::after {
    width: 100%;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.6);
}

/* Subtitle */
.domain-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
}

/* Features List */
    .features-list {
        margin-top: 32px;
    }

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-shine);
    transition: left 0.6s ease;
}

.feature-item:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.feature-item:hover::before {
    left: 100%;
}

/* Feature Icons */
.feature-check {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
    animation: iconPulse 2s ease-in-out infinite;
}

.feature-check svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.feature-check::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: 16px;
    opacity: 0.5;
    filter: blur(10px);
    z-index: -1;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-check {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
}

.feature-item:hover .feature-check::before {
    opacity: 0.8;
    filter: blur(15px);
}

/* Feature Content */
.feature-content {
    flex: 1;
}

.feature-title {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.5;
}

/* Taken Extensions */
    .taken-extensions {
        margin: 12px 0 20px 0;
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }

.taken-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.taken-extension {
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(239, 68, 68, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.taken-extension::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.taken-extension:hover {
    transform: translateY(-2px) scale(1.05);
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 8px 16px rgba(239, 68, 68, 0.15);
}

.taken-extension:hover::before {
    opacity: 1;
}

/* Professional Offer Card */
.offer-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.offer-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.offer-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(102, 126, 234, 0.2),
        0 0 80px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-card:hover::after {
    opacity: 1;
}

/* Offer Section */
.offer-section {
    margin-bottom: 32px;
}

.offer-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    text-align: center;
}

/* Modern Input System */
.price-input-wrapper {
    position: relative;
    margin-bottom: 12px;
}

.currency-symbol {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-secondary);
    z-index: 2;
    transition: all 0.3s ease;
}

.price-input-wrapper:focus-within .currency-symbol {
    color: var(--primary-color);
}

.price-input {
    width: 100%;
    padding: 18px 20px 18px 52px;
    font-size: 20px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: right;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) inset;
}

.price-input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.price-input:focus {
    outline: none;
    border-color: rgba(102, 126, 234, 0.5);
    background: rgba(37, 99, 235, 0.08);
    box-shadow: 
        0 0 0 4px rgba(102, 126, 234, 0.15),
        0 4px 20px rgba(0, 0, 0, 0.1) inset,
        0 0 40px rgba(102, 126, 234, 0.1);
    transform: scale(1.02);
}

.price-input:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(15, 23, 42, 0.8);
}

/* Professional Submit Button */
.submit-button {
    width: 100%;
    padding: 18px 24px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 
        0 10px 30px rgba(102, 126, 234, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transform-style: preserve-3d;
    will-change: transform, box-shadow;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.submit-button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: brightness(1.2) saturate(1.2);
}

.submit-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(102, 126, 234, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.2) inset,
        0 0 80px rgba(102, 126, 234, 0.2);
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover::after {
    opacity: 1;
}

.submit-button:active {
    transform: translateY(-1px) scale(1);
    box-shadow: 
        0 10px 30px rgba(102, 126, 234, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.submit-button svg {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.submit-button:hover svg {
    transform: translateX(6px) rotate(45deg);
}

.submit-button span {
    z-index: 1;
    position: relative;
}

/* Loading State */
.button-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.submit-button.loading .button-loader {
    opacity: 1;
    visibility: visible;
}

.submit-button.loading .button-text,
.submit-button.loading .button-icon {
    opacity: 0;
    transform: scale(0.8);
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Premium Value Section */
.premium-value-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--light-bg) 100%);
    border-top: 1px solid var(--border-color);
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.premium-value-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(30, 58, 138, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.premium-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.premium-header {
    text-align: center;
    margin-bottom: 64px;
}

.premium-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.premium-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-weight: 400;
    line-height: 1.6;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.premium-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
    transform-style: preserve-3d;
    perspective: 1000px;
    will-change: transform;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(102, 126, 234, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.premium-card:hover {
    transform: translateY(-12px) rotateX(2deg);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(102, 126, 234, 0.2),
        0 0 120px rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.2);
    background: rgba(37, 99, 235, 0.05);
}

.premium-card:hover::before {
    transform: translateX(0);
}

.premium-card:hover::after {
    opacity: 1;
}

.premium-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(30, 58, 138, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.premium-card:hover .premium-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(30, 58, 138, 0.2));
}

.premium-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-color);
    stroke-width: 2;
    transition: all 0.3s ease;
}

.premium-card:hover .premium-icon svg {
    stroke: var(--primary-light);
    transform: scale(1.1);
}

.premium-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.premium-card:hover .premium-card-title {
    color: var(--primary-color);
}

.premium-card-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    transition: all 0.3s ease;
}

/* Scroll Animation Classes */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.scroll-slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-slide-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger animation delay */
.stagger-delay-1 { transition-delay: 0.1s; }
.stagger-delay-2 { transition-delay: 0.2s; }
.stagger-delay-3 { transition-delay: 0.3s; }
.stagger-delay-4 { transition-delay: 0.4s; }

/* Entry Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.content-wrapper {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.left-content {
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.offer-card {
    animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.premium-card {
    animation: fadeInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation-fill-mode: both;
}

.premium-card:nth-child(1) { animation-delay: 0.1s; }
.premium-card:nth-child(2) { animation-delay: 0.2s; }
.premium-card:nth-child(3) { animation-delay: 0.3s; }
.premium-card:nth-child(4) { animation-delay: 0.4s; }

.feature-item {
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation-fill-mode: both;
}

.feature-item:nth-child(1) { animation-delay: 0.5s; }
.feature-item:nth-child(2) { animation-delay: 0.6s; }
.feature-item:nth-child(3) { animation-delay: 0.7s; }
.feature-item:nth-child(4) { animation-delay: 0.8s; }

/* Modern Toast Notifications */
.toast-notification {
    position: fixed;
    top: 100px;
    right: 24px;
    min-width: 350px;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    animation: toastSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

@keyframes toastSlideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast-notification.toast-hide {
    animation: toastSlideOut 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes toastSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-success .toast-icon {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.toast-error .toast-icon {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.toast-message {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.toast-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.toast-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transform: scale(1.1);
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-primary);
    animation: toastProgress 5s linear forwards;
}

@keyframes toastProgress {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .toast-notification {
        min-width: auto;
        left: 16px;
        right: 16px;
        top: 80px;
    }
}

@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 700px;
        margin: 0 auto;
        align-content: center;
        justify-content: center;
        min-height: calc(100vh - 120px);
    }

    .main-container {
        padding: 40px 32px 40px;
    }

    .premium-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .premium-value-section {
        padding: 80px 0;
    }

    .premium-container {
        padding: 0 32px;
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 20px 20px 40px;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .domain-name {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 16px;
    }

    .domain-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .offer-card {
        padding: 20px;
    }

    .feature-item {
        padding: 12px;
        margin-bottom: 12px;
        gap: 12px;
    }

    .feature-check {
        width: 36px;
        height: 36px;
    }
    
    .feature-check svg {
        width: 20px;
        height: 20px;
    }

    .premium-value-section {
        padding: 40px 0;
        min-height: auto;
    }

    .premium-container {
        padding: 0 24px;
    }

    .premium-card {
        padding: 32px;
    }

    .premium-icon {
        width: 56px;
        height: 56px;
    }

    .premium-icon svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 16px 16px 30px;
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .content-wrapper {
        gap: 20px;
        min-height: calc(100vh - 80px);
        align-content: center;
    }

    .domain-name {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        margin-bottom: 12px;
    }

    .domain-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .taken-extensions {
        margin: 8px 0 16px 0;
        gap: 6px;
    }
    
    .taken-extension {
        padding: 6px 12px;
        font-size: 10px;
    }

    .offer-card {
        padding: 24px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .offer-label {
        font-size: 16px;
    }

    .price-input {
        padding: 14px 14px 14px 42px;
        font-size: 16px;
    }

    .currency-symbol {
        left: 14px;
        font-size: 16px;
    }

    .submit-button {
        padding: 14px 18px;
        font-size: 14px;
        letter-spacing: 0.8px;
    }

    .feature-item {
        padding: 10px;
        gap: 10px;
        margin-bottom: 10px;
    }

    .feature-check {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .feature-check svg {
        width: 18px;
        height: 18px;
    }

    .feature-title {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .feature-desc {
        font-size: 12px;
        line-height: 1.4;
    }

    .premium-value-section {
        padding: 40px 0;
        margin-top: 40px;
        min-height: auto;
    }

    .premium-container {
        padding: 0 20px;
    }

    .premium-title {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
        margin-bottom: 12px;
    }

    .premium-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .premium-card {
        padding: 18px;
    }

    .premium-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }

    .premium-icon svg {
        width: 20px;
        height: 20px;
    }

    .premium-card-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .premium-card-desc {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .footer {
        padding: 16px 0;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-text {
        font-size: 12px;
    }
    
    .footer-logo img {
        height: 24px;
    }
}
