* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #87CEEB 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    overflow: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: 900px;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.content {
    text-align: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 4rem 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.domain-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.domain-name {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #1e3c72, #2a69ac);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.for-sale-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    box-shadow: 0 10px 20px rgba(79, 172, 254, 0.3);
}

.description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #555;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.price-section {
    margin-bottom: 3rem;
}

.price-label {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 0.5rem;
}

.price {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(to right, #1e3c72, #2a69ac);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section {
    margin-top: 3rem;
}

.cta-text {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(79, 172, 254, 0.3);
    border: none;
    cursor: pointer;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-btn:hover .arrow-icon {
    transform: translateX(5px);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.offer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: #2a69ac;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: 2px solid #4facfe;
    margin-left: 1rem;
    cursor: pointer;
}

.offer-btn:hover {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    transform: translateY(-3px);
}

/* Trust Section */
.trust-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(135, 206, 235, 0.3);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #2a69ac;
}

.trust-badge svg {
    width: 20px;
    height: 20px;
}

.trust-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #2a69ac;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid rgba(135, 206, 235, 0.3);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    color: #333;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease;
}

.close {
    color: #999;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.close:hover {
    opacity: 1;
    color: #333;
}

.modal h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #2a69ac;
}

.email-template {
    margin: 2rem 0;
}

.email-template h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.email-content {
    background: rgba(135, 206, 235, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 10px;
    white-space: pre-wrap;
    font-family: monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    max-height: 300px;
    overflow-y: auto;
    color: #555;
    border: 1px solid rgba(135, 206, 235, 0.3);
}

.copy-btn, .copy-email-btn {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
}

.copy-btn:hover, .copy-email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.4);
}

.contact-info {
    text-align: center;
    margin-top: 2rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.current-price {
    background: rgba(135, 206, 235, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(135, 206, 235, 0.3);
}

.current-price strong {
    font-size: 1.5rem;
    color: #2a69ac;
    font-weight: 700;
}

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

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

/* Background shapes */
.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: rgba(135, 206, 235, 0.2);
    top: -300px;
    right: -300px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(79, 172, 254, 0.2);
    bottom: -200px;
    left: -200px;
    animation-delay: 5s;
}

.shape-3 {
    width: 500px;
    height: 500px;
    background: rgba(0, 242, 254, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

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

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

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

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.animate-slide-in {
    animation: slideIn 0.8s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .content {
        padding: 3rem 2rem;
    }
    
    .domain-name {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }
    
    .price {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .description {
        font-size: 1.125rem;
    }
    
    .contact-btn, .offer-btn {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-badge {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .content {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }
}