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

body {
    font-family: 'Arial', sans-serif;
    background: #1a1a1a;
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Animated Background Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #00ff88;
    border-radius: 50%;
    animation: float 6s infinite linear;
    opacity: 0.7;
}

.particle:nth-child(2n) {
    background: #0088ff;
    animation-duration: 8s;
}

.particle:nth-child(3n) {
    background: #ffff00;
    animation-duration: 10s;
}

.particle:nth-child(4n) {
    background: #ff0088;
    animation-duration: 12s;
}

.particle:nth-child(5n) {
    width: 2px;
    height: 2px;
    background: white;
    animation-duration: 15s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Main Content */
.container {
    text-align: center;
    z-index: 10;
    position: relative;
    max-width: 800px;
    padding: 20px;
}

.domain-name {
    font-size: 4rem;
    font-weight: bold;
    color: #00ff88;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(0, 255, 136, 0.8), 0 0 40px rgba(0, 255, 136, 0.3);
    }
}

.for-sale {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-section {
    margin-top: 4rem;
}

.contact-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #00ff88;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 5px;
}

.contact-item:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-2px);
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #00ff88;
}

/* Icons */
.icon {
    width: 20px;
    height: 20px;
    fill: #00ff88;
}

/* Responsive Design */
@media (max-width: 768px) {
    .domain-name {
        font-size: 2.5rem;
    }
    
    .for-sale {
        font-size: 2rem;
    }
    
    .description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .contact-info {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .domain-name {
        font-size: 2rem;
    }
    
    .for-sale {
        font-size: 1.5rem;
    }
}