/* 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: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.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%;
    }
}
