/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-text {
    color: #FFFFFF;
}

.logo-fun {
    background: linear-gradient(135deg, #B23EFF, #2EB7FF, #27FFD3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #27FFD3;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 20px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.sphere-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle at 30% 30%,
        #9439FF 0%,
        #367BFF 50%,
        #19E3C7 100%
    );
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.15; }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #B23EFF, #27FFD3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    bottom: 20%;
    right: 30%;
    animation-delay: 3s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #B23EFF, #2EB7FF, #27FFD3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #CCCCCC;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Domain Search */
.domain-search {
    margin-top: 2rem;
}

.search-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(39, 255, 211, 0.3);
    border-radius: 50px;
    padding: 0.5rem;
    max-width: 600px;
    margin: 0 auto;
    transition: border-color 0.3s ease;
}

.search-container:focus-within {
    border-color: #27FFD3;
    box-shadow: 0 0 20px rgba(39, 255, 211, 0.3);
}

.domain-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    outline: none;
}

.domain-input::placeholder {
    color: #888888;
}

.domain-suffix {
    color: #27FFD3;
    font-weight: 600;
    font-size: 1.1rem;
    margin-right: 1rem;
}

.search-btn {
    background: linear-gradient(135deg, #B23EFF, #2EB7FF);
    color: #FFFFFF;
    border: none;
    padding: 1rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(178, 62, 255, 0.4);
}

.domain-result {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 500;
    display: none;
}

.domain-result.available {
    background: rgba(39, 255, 211, 0.1);
    border: 1px solid #27FFD3;
    color: #27FFD3;
}

.domain-result.taken {
    background: rgba(255, 0, 200, 0.1);
    border: 1px solid #FF00C8;
    color: #FF00C8;
}

.domain-result.premium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #FFD700;
    color: #FFD700;
}

.domain-result.loading {
    background: rgba(39, 255, 211, 0.1);
    border: 1px solid #27FFD3;
    color: #27FFD3;
}

/* Register Button */
.register-btn {
    background: linear-gradient(135deg, #B23EFF, #2EB7FF);
    color: #FFFFFF;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(178, 62, 255, 0.4);
}

/* Animation Styles */
.loading-dots {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.loading-dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #27FFD3;
    margin: 0 2px;
    animation: loadingDots 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes loadingDots {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    animation: confettiFall 3s linear forwards;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Enhanced Success Animations */
@keyframes burstOut {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) translateX(calc(cos(var(--angle)) * var(--distance))) translateY(calc(sin(var(--angle)) * var(--distance))) scale(0);
        opacity: 0;
    }
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(0);
        opacity: 1;
    }
    50% {
        transform: translateY(-50px) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-150px) scale(0);
        opacity: 0;
    }
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.8;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%) scale(8);
        opacity: 0;
    }
}

@keyframes emojiFloat {
    0% {
        transform: translateY(0) scale(0) rotate(0deg);
        opacity: 0;
    }
    20% {
        transform: translateY(-20px) scale(1) rotate(180deg);
        opacity: 1;
    }
    80% {
        transform: translateY(-80px) scale(1) rotate(360deg);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-120px) scale(0) rotate(540deg);
        opacity: 0;
    }
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FFD700;
    border-radius: 50%;
    animation: sparkleEffect 2s ease-in-out infinite;
}

@keyframes sparkleEffect {
    0%, 100% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1) rotate(180deg);
        opacity: 1;
    }
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #B23EFF, #2EB7FF, #27FFD3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features Section */
.features {
    background: linear-gradient(180deg, rgba(178, 62, 255, 0.05) 0%, transparent 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(39, 255, 211, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(39, 255, 211, 0.2);
    border-color: #27FFD3;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.feature-card p {
    color: #CCCCCC;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(180deg, rgba(46, 183, 255, 0.05) 0%, transparent 100%);
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 300px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #B23EFF, #2EB7FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.step-content p {
    color: #CCCCCC;
    line-height: 1.5;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(180deg, rgba(39, 255, 211, 0.05) 0%, transparent 100%);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(39, 255, 211, 0.3);
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(39, 255, 211, 0.2);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #B23EFF, #2EB7FF, #27FFD3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-currency {
    font-size: 2rem;
    font-weight: 600;
    color: #27FFD3;
    margin-left: 0.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #CCCCCC;
    font-size: 1.1rem;
}

.pricing-btn {
    background: linear-gradient(135deg, #B23EFF, #2EB7FF);
    color: #FFFFFF;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(178, 62, 255, 0.4);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem 0;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-text {
    color: #888888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .search-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .domain-input {
        text-align: center;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
}

/* Payment Modal Styles */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-content {
    background: linear-gradient(135deg, rgba(178, 62, 255, 0.1), rgba(46, 183, 255, 0.1));
    border: 2px solid rgba(39, 255, 211, 0.3);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-content.success {
    border-color: #27FFD3;
    background: linear-gradient(135deg, rgba(39, 255, 211, 0.1), rgba(178, 62, 255, 0.1));
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(39, 255, 211, 0.2);
}

.modal-header h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modal-body {
    color: #CCCCCC;
}

.payment-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.payment-info p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.payment-options {
    text-align: center;
    margin-bottom: 1.5rem;
}

.payment-options h4 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.solana-btn {
    background: linear-gradient(135deg, #B23EFF, #2EB7FF);
    color: #FFFFFF;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1rem;
}

.solana-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(178, 62, 255, 0.4);
}

.note {
    font-size: 0.9rem;
    color: #888888;
    margin: 0;
}

/* Email and Nameservers Sections */
.email-section, .nameservers-section {
    margin-bottom: 1.5rem;
}

.email-section label, .nameservers-section label {
    display: block;
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.email-input, .nameserver-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(39, 255, 211, 0.3);
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.email-input:focus, .nameserver-input:focus {
    outline: none;
    border-color: #27FFD3;
    box-shadow: 0 0 10px rgba(39, 255, 211, 0.3);
}

.email-input::placeholder, .nameserver-input::placeholder {
    color: #888888;
}

.nameservers-inputs {
    display: flex;
    gap: 1rem;
}

.nameserver-input {
    flex: 1;
}

.email-note, .nameservers-note {
    color: #888888;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.wallet-btn, .manual-btn {
    width: 100%;
    max-width: 300px;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.wallet-btn {
    background: linear-gradient(135deg, #B23EFF, #2EB7FF);
    color: #FFFFFF;
    border: none;
}

.wallet-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(178, 62, 255, 0.4);
}

.manual-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 2px solid rgba(39, 255, 211, 0.3);
}

.wallet-btn small, .manual-btn small {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 0.25rem;
    font-weight: 400;
}

.payment-divider {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
}

.payment-divider::before,
.payment-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(39, 255, 211, 0.3);
}

.payment-divider span {
    padding: 0 1rem;
    color: #888888;
    font-weight: 600;
}

/* Address and Memo Boxes */
.address-box, .memo-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(39, 255, 211, 0.2);
    border-radius: 10px;
    padding: 1rem;
    margin: 0.5rem 0;
}

.address-box code, .memo-box code {
    flex: 1;
    color: #27FFD3;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    word-break: break-all;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    border-radius: 5px;
}

.copy-btn {
    background: linear-gradient(135deg, #27FFD3, #2EB7FF);
    color: #000000;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.copy-btn:hover {
    transform: translateY(-2px);
}

.note {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 6px;
    padding: 0.75rem;
    margin: 0.5rem 0;
    color: #ffc107;
    font-size: 0.9rem;
    text-align: center;
}

/* Management Section */
.management-section {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(39, 255, 211, 0.1);
    border: 1px solid #27FFD3;
    border-radius: 15px;
}

.management-section h4 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.management-url-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.management-link {
    flex: 1;
    color: #27FFD3;
    text-decoration: none;
    font-weight: 600;
    word-break: break-all;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    transition: color 0.3s ease;
}

.management-link:hover {
    color: #FFFFFF;
}

.management-note {
    color: #888888;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

.payment-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.payment-details p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    word-break: break-all;
}

.payment-instructions {
    margin-bottom: 1.5rem;
}

.payment-instructions h4 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.payment-instructions ol {
    padding-left: 1.5rem;
    color: #CCCCCC;
}

.payment-instructions li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.payment-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.verify-btn {
    background: linear-gradient(135deg, #27FFD3, #2EB7FF);
    color: #000000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.verify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(39, 255, 211, 0.4);
}

.verify-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.verify-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

.verify-btn.loading {
    color: rgba(0, 0, 0, 0.3) !important;
    pointer-events: none;
}

.verify-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid #000000;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    opacity: 0.8;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cancel-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cancel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.success-details {
    background: rgba(39, 255, 211, 0.1);
    border: 1px solid #27FFD3;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.success-details p {
    margin: 0.5rem 0;
    color: #FFFFFF;
}

.success-message {
    text-align: center;
    margin-bottom: 1.5rem;
}

.success-message p {
    color: #27FFD3;
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .modal-content {
        padding: 1.5rem;
        margin: 10px;
    }
    
    .payment-actions {
        flex-direction: column;
    }
    
    .verify-btn,
    .cancel-btn {
        width: 100%;
    }
}

/* Management Page Styles */
.domain-management {
    min-height: 100vh;
    padding-top: 100px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

.management-header {
    text-align: center;
    margin-bottom: 3rem;
}

.management-header .section-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #27FFD3, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.management-subtitle {
    font-size: 1.2rem;
    color: #888888;
    font-weight: 400;
}

.loading-state {
    text-align: center;
    padding: 3rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(39, 255, 211, 0.3);
    border-top: 4px solid #27FFD3;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.domain-info-section {
    margin-bottom: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(39, 255, 211, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.info-card h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(39, 255, 211, 0.1);
}

.info-item label {
    font-weight: 600;
    color: #27FFD3;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item span {
    color: #FFFFFF;
    font-weight: 500;
    word-break: break-all;
}

.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.active {
    background: rgba(39, 255, 211, 0.2);
    color: #27FFD3;
    border: 1px solid #27FFD3;
}

.status-badge.pending {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
    border: 1px solid #FFC107;
}

.status-badge.expired {
    background: rgba(220, 53, 69, 0.2);
    color: #DC3545;
    border: 1px solid #DC3545;
}

.settings-section {
    margin-top: 2rem;
}

.settings-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(39, 255, 211, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.settings-card h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #27FFD3;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(39, 255, 211, 0.3);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27FFD3;
    box-shadow: 0 0 0 2px rgba(39, 255, 211, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666666;
}

.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #27FFD3, #00D4FF);
    color: #000000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 255, 211, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.error-message {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid #DC3545;
    color: #DC3545;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: center;
}

.success-message {
    background: rgba(39, 255, 211, 0.1);
    border: 1px solid #27FFD3;
    color: #27FFD3;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: center;
}

/* Responsive Design for Management Page */
@media (max-width: 768px) {
    .management-header .section-title {
        font-size: 2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* Roadmap Section */
.roadmap {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.roadmap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(39, 255, 211, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.roadmap .section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #27FFD3, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roadmap-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

/* .roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #27FFD3, #00D4FF);
    border-radius: 1px;
} */

.roadmap-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.roadmap-item.completed {
    opacity: 1;
}

.roadmap-item:hover {
    opacity: 1;
    transform: translateX(5px);
}

.roadmap-date {
    flex-shrink: 0;
    width: 4rem;
    text-align: center;
    position: relative;
    z-index: 2;
    padding-top: 0.5rem;
}

.roadmap-date .date {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #27FFD3;
    margin-bottom: 0.5rem;
}

.roadmap-date .status {
    display: block;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roadmap-item.completed .status {
    background: rgba(39, 255, 211, 0.2);
    color: #27FFD3;
    border: 1px solid #27FFD3;
}

.roadmap-item:not(.completed) .status {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.roadmap-content {
    flex: 1;
    margin-left: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(39, 255, 211, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    position: relative;
}

.roadmap-content::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid rgba(39, 255, 211, 0.2);
}

.roadmap-content h3 {
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #27FFD3, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roadmap-content p {
    color: #CCCCCC;
    line-height: 1.6;
    font-size: 1rem;
}

/* Roadmap Responsive Design */
@media (max-width: 768px) {
    .roadmap {
        padding: 3rem 0;
    }
    
    .roadmap .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .roadmap-timeline::before {
        left: 1.5rem;
    }
    
    .roadmap-item {
        flex-direction: column;
        margin-bottom: 2rem;
    }
    
    .roadmap-date {
        width: 100%;
        margin-bottom: 1rem;
        text-align: left;
    }
    
    .roadmap-content {
        margin-left: 0;
    }
    
    .roadmap-content::before {
        display: none;
    }
}

/* Social Section */
.social {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.social::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(39, 255, 211, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.social .section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #27FFD3, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(39, 255, 211, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    text-decoration: none;
    color: #FFFFFF;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(39, 255, 211, 0.2);
    border-color: #27FFD3;
}

.social-link.twitter:hover {
    background: rgba(29, 161, 242, 0.1);
    border-color: #1DA1F2;
}

.social-link.community:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00D4FF;
}

.social-link.token:hover {
    background: rgba(255, 193, 7, 0.1);
    border-color: #FFC107;
}

.social-icon {
    font-size: 2.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(39, 255, 211, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(39, 255, 211, 0.3);
}

.social-content {
    flex: 1;
}

.social-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #27FFD3, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-content p {
    color: #CCCCCC;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.token-address {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    word-break: break-all;
    margin-bottom: 1rem;
}

.copy-token-btn {
    background: linear-gradient(135deg, #27FFD3, #00D4FF);
    color: #000000;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-token-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 255, 211, 0.4);
}

/* Social Section Responsive Design */
@media (max-width: 768px) {
    .social {
        padding: 3rem 0;
    }
    
    .social .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .social-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-link {
        padding: 1.5rem;
    }
    
    .social-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
        margin-right: 1rem;
    }
    
    .social-content h3 {
        font-size: 1.1rem;
    }
    
    .token-address {
        font-size: 0.8rem;
    }
}
