.elementor-1229 .elementor-element.elementor-element-aa56617{--display:flex;}body.elementor-page-1229:not(.elementor-motion-effects-element-type-background), body.elementor-page-1229 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, #1A1A1A 0%, #316F6C 100%);}:root{--page-title-display:none;}/* Start custom CSS */* {
    font-family: 'Audiowide', cursive;
}

.nft-soon-container {
    padding-top: 140px !important;
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0f 0%, #2a0845 50%, #0a0a0f 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(153,69,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,20,147,0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
    z-index: 1;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.soon-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

/* Glitch effect */
.glitch-wrapper {
    margin-bottom: 30px;
}

.glitch {
    font-size: clamp(60px, 15vw, 120px);
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    color: #fff;
    letter-spacing: 5px;
    animation: glitch-skew 1s infinite linear alternate-reverse;
    text-shadow: 
        0 0 20px rgba(0,255,163,0.5),
        0 0 40px rgba(0,255,163,0.3);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: #00FFA3;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: #FF00FF;
    z-index: -2;
}

@keyframes glitch-1 {
    0% { clip-path: inset(40% 0 61% 0); transform: translate(-2px, -2px); }
    20% { clip-path: inset(92% 0 1% 0); transform: translate(2px, 2px); }
    40% { clip-path: inset(43% 0 1% 0); transform: translate(-2px, 2px); }
    60% { clip-path: inset(25% 0 58% 0); transform: translate(2px, -2px); }
    80% { clip-path: inset(54% 0 7% 0); transform: translate(-2px, 2px); }
    100% { clip-path: inset(58% 0 43% 0); transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0% { clip-path: inset(50% 0 30% 0); transform: translate(2px, 2px); }
    20% { clip-path: inset(79% 0 10% 0); transform: translate(-2px, -2px); }
    40% { clip-path: inset(20% 0 70% 0); transform: translate(2px, -2px); }
    60% { clip-path: inset(90% 0 5% 0); transform: translate(-2px, 2px); }
    80% { clip-path: inset(10% 0 85% 0); transform: translate(2px, 2px); }
    100% { clip-path: inset(40% 0 55% 0); transform: translate(-2px, -2px); }
}

@keyframes glitch-skew {
    0% { transform: skew(0deg); }
    10% { transform: skew(1deg); }
    20% { transform: skew(0deg); }
    30% { transform: skew(-1deg); }
    40% { transform: skew(0deg); }
    50% { transform: skew(0.5deg); }
    60% { transform: skew(0deg); }
    100% { transform: skew(0deg); }
}

/* Rotating disc */
.nft-preview {
    margin: 40px auto;
    width: 200px;
    height: 200px;
    position: relative;
}

.rotating-disc {
    width: 100%;
    height: 100%;
    border: 3px solid #00FFA3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: rotate 10s linear infinite;
    box-shadow: 
        0 0 30px rgba(0,255,163,0.5),
        inset 0 0 30px rgba(0,255,163,0.2);
}

.rotating-disc .emoji {
    position: absolute;
    font-size: 30px;
    animation: rotate-reverse 10s linear infinite;
}

.rotating-disc .emoji:nth-child(1) { top: 10px; left: 50%; transform: translateX(-50%); }
.rotating-disc .emoji:nth-child(2) { right: 10px; top: 50%; transform: translateY(-50%); }
.rotating-disc .emoji:nth-child(3) { bottom: 10px; left: 50%; transform: translateX(-50%); }
.rotating-disc .emoji:nth-child(4) { left: 10px; top: 50%; transform: translateY(-50%); }

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.subtitle {
    font-size: 24px;
    color: #00FFA3;
    margin: 20px 0;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(0,255,163,0.5);
}

.description {
    font-size: 18px;
    color: #fff;
    margin: 30px auto;
    line-height: 1.6;
    max-width: 600px;
}

.highlight {
    color: #FFD700;
    font-weight: bold;
}

/* Feature cards */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.feature-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,255,163,0.3);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(0,255,163,0.1);
    box-shadow: 0 10px 30px rgba(0,255,163,0.3);
}

.feature-card .icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #00FFA3;
    margin: 15px 0;
    font-size: 18px;
    letter-spacing: 2px;
}

.feature-card p {
    color: #fff;
    opacity: 0.8;
}

/* Progress bar */
.countdown {
    margin: 50px 0;
}

.countdown p {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 2px;
}

.progress-bar {
    width: 100%;
    max-width: 400px;
    height: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00FFA3, #03E1FF);
    width: 75%;
    animation: pulse-width 2s ease-in-out infinite;
}

@keyframes pulse-width {
    0%, 100% { width: 75%; }
    50% { width: 80%; }
}

/* Notify button */
.notify-btn {
    background: linear-gradient(135deg, #00FFA3, #03E1FF);
    color: #000;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 2px;
    margin-top: 30px;
}

.notify-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,255,163,0.5);
}

/* Floating notes */
.floating-notes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.note {
    position: absolute;
    font-size: 30px;
    opacity: 0.3;
    animation: float 10s infinite ease-in-out;
}

.note-1 { top: 10%; left: 10%; animation-delay: 0s; }
.note-2 { top: 60%; right: 10%; animation-delay: 3s; }
.note-3 { bottom: 20%; left: 20%; animation-delay: 6s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .glitch {
        font-size: 60px;
    }
    
    .subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .nft-soon-container {
        padding-top: 80px !important;
    }
}/* End custom CSS */