:root {
    --bg-color: #050505;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --primary: #8a2be2;
    --primary-hover: #9d4edd;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Background animated blobs for dynamic, premium feel */
.blob-cont {
    position: fixed;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
    filter: blur(100px);
}

.blob {
    border-radius: 50%;
    position: absolute;
    animation: move 12s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.yellow {
    width: 400px;
    height: 400px;
    background-color: #8a2be2; /* Deep Purple */
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.red {
    width: 300px;
    height: 300px;
    background-color: #ff007f; /* Neon Pink */
    bottom: -50px;
    right: -50px;
    animation-delay: -2s;
}

.green {
    width: 350px;
    height: 350px;
    background-color: #4361ee; /* Royal Blue */
    bottom: 20%;
    left: 20%;
    animation-delay: -4s;
}

@keyframes move {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, 60px) scale(1.05); }
    100% { transform: translate(-60px, 120px) scale(0.95); }
}

/* Main Container & Glassmorphism Panel */
.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    margin: auto;
    padding: 20px;
    perspective: 1200px; /* For 3D Tilt */
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.05);
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.glass-panel:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.15);
}

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

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.pulse {
    width: 10px;
    height: 10px;
    background-color: #00ff88; /* Neon Green */
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: pulse 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.8); }
    70% { box-shadow: 0 0 0 15px rgba(0, 255, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

/* Typography styles */
.domain-name {
    font-size: 4.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 10px 20px rgba(0,0,0,0.2);
    letter-spacing: -2px;
}

.description {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
}

.price-container {
    margin-bottom: 45px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 12px;
}

.currency {
    font-size: 1.6rem;
    color: var(--primary-hover);
    font-weight: 600;
    opacity: 0.9;
}

.amount {
    font-size: 3.8rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
}

/* Buttons */
.action-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.btn {
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Button ripple effect using pseudo element */
.btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::after {
    opacity: 1;
}

.btn ion-icon {
    font-size: 1.4rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #5a189a);
    color: white;
    border: none;
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.35);
}

.btn-primary:hover {
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.55);
    transform: translateY(-3px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.feature ion-icon {
    font-size: 1.6rem;
    color: #fff;
    background: rgba(255,255,255,0.06);
    padding: 12px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.glass-panel:hover .feature ion-icon {
    background: rgba(255,255,255,0.1);
    transform: scale(1.05);
}

.feature span {
    font-size: 0.9rem;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }
    .domain-name {
        font-size: 2.8rem;
    }
    .amount {
        font-size: 2.4rem;
    }
    .currency {
        font-size: 1.2rem;
    }
    .action-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
    .features {
        flex-direction: column;
        gap: 12px;
    }
    .glass-panel {
        padding: 35px 20px;
        border-radius: 20px;
    }
    .feature {
        flex-direction: row;
        text-align: left;
        justify-content: flex-start;
        background: rgba(255, 255, 255, 0.03);
        padding: 12px 16px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        gap: 15px;
    }
}
