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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #d9d5d0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    display: flex;
    align-items: flex-start;
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #19191a;
}

.logo-registered {
    font-size: 10px;
    vertical-align: super;
    color: #19191a;
}

.connect-wallet-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px  1rem;
    background-color:transparent;
    border: 1px solid #19191a;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.2s;
    color: #303030 ;

}

.connect-wallet-btn:hover {
    background-color: #9c9494;
}

.wallet-icon {
    width: 16px;
    height: 16px;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

/* Card Container */
.card {
    width: 100%;
    max-width: 1000px;
      position: relative;
 }

/* Video Header Section */
.video-header-container {
    position: relative;
    width: 100%;
    height: 120px;
    background-color: transparent;
    background: transparent;

}


.video-mask {
    width: 100%;
    height: 100%;
    position: relative;
      overflow: hidden;
     position: absolute;
    /* clip-path: polygon(10% 0, 80% 0, 100% 24%, 100% 80%, 100% 100%, 20% 100%, 0 100%, 0% 20%); */
    top: 15px;

}

/* Video Placeholder Animation */
.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #2e4a36, #7a3e3e, #3e3e7a, #2e4a36);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
      width: 75%;
clip-path: polygon(3% 0, 88% 0, 102% 47%, 100% 41%, 78% 100%, 18% 102%, 0 100%, 0% 27%);


}
.video-placeholder2 {
    background-color: #141414;
    width: 100%;
    position: absolute;
    right: 0;
    height: 47%;
    bottom: 16px;
    clip-path: polygon(7% 0, 98% 0, 100% 22%, 100% 48%, 100% 100%, 20% 100%, 0 100%, 0 0);


}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* For real video later */
.real-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

/* Header Content Overlay */
.header-content {
    position: absolute;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    pointer-events: none;
}

.header-content span {
    color: white;
    font-size: 1.56rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Star Icon */
.star-icon {
    width: 22px;
    height: 22px;
    fill: white;
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.5));
}

/* Card Body Section */
.card-body {
    padding: 30px 30px 40px 30px;
    color: white;
    background-color: #141414;
    clip-path: polygon(1% -1%, 100% 0, 100% 12%, 100% 89%, 98% 100%, 2% 100%, 0 91%, 0% 6%);
    position: relative;

}
 
.card::before {
    content: "";
    position: absolute;
    background-color: #d9d5d0;
 
    top: 80%;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: -2;
    clip-path: polygon(1% 2%, 100% 0, 100% 16%, 100% 62%, 98% 100%, 2% 100%, 0 74%, 0% 6%);
}
 .card::after {
    content: "";
    position: absolute;
    background-color: #141414;
    
    top: 80%;
    bottom: -4px;
    left: 0;
    right: 0;
    z-index: -4;
    clip-path: polygon(1% 2%, 100% 0, 100% 16%, 100% 62%, 98% 100%, 2% 100%, 0 74%, 0% 6%);
}
 

/* Card Title */
.card-title {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-title::before {
    content: '';
    display: block;
    width: 8px;
    height: 24px;
    background-color: white;
    margin-right: 16px;
 }

/* Card Text */
.card-text {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size:1.2rem;
    max-width: 90%;
    max-width: 400px;
}

/* Register Button */
.register-btn {
    background-color: #e0e0e0;
    color: #141414;
    border: none;
    padding: 14px 8rem;
    min-width: 180px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.register-btn:hover {
    background-color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.1);
}

.register-btn:active {
    transform: translateY(0);
}

/* Title Indicator for other sections */
.title-indicator {
    display: inline-block;
    width: 8px;
    height: 30px;
    background-color: #fff;
    margin-right: 12px;
    vertical-align: middle;
}

/* Soon Section */
.soon-section {
    background-color: #e1dede;
    padding: 4rem 40px;
    margin-top: auto;
    border: 1px solid #19191a;
}

.soon-content {
     margin: 0 auto;
}

.soon-title {
    display: flex;
    align-items: center;
     font-weight: 500;
    letter-spacing: 1px;
    color: #19191a;
    margin-bottom: 16px;
    font-size: 2rem;

}

.soon-title .title-indicator {
    background-color: #19191a;
}

.soon-divider {
    width: 100%;
    height: 2px;
    background-color: #19191a;
}

/* Footer */
.footer {
    background-color: #19191a;
    padding: 60px 40px 30px;
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-logo-text {
    font-size: 80px;
    font-weight: 900;
    letter-spacing: 8px;
    color: #fff;
}

.footer-logo-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-left: 8px;
}

.copyright {
    font-size: 12px;
    color: white;
}

.copyright a {
    color: #fff;
    text-decoration: underline;
    margin-left: 8px;
}

.copyright a:hover {
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 16px 20px;
    }

    .logo-text {
        font-size: 18px;
    }

    .connect-wallet-btn {
        padding: 8px 12px;
        font-size: 11px;
    }

    .card {
        max-width: 100%;
    }

    .video-header-container {
        height: 80px;
        margin-bottom: 10px;
    }

    .video-mask {
        position: relative;
        top: 0;
    }

    .video-placeholder {
        width: 100%;
        height: 80px;
        clip-path: none;
    }

    .video-placeholder2 {
        display: none;
    }

    .card-body {
        padding: 24px;
        clip-path: none;
    }

    .register-btn {
        width: 100%;
        padding: 14px 24px;
    }

    .header-content span {
        font-size: 1.2rem;
    }

    .footer-logo-text {
        font-size: 40px;
        letter-spacing: 4px;
    }

    .footer-logo-circle {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .soon-section {
        padding: 24px 20px;
    }
}

@media (max-width: 500px) {
    .video-header-container {
        height: 60px;
        margin-bottom: 8px;
    }

    .video-placeholder {
        width: 100%;
        height: 60px;
        clip-path: none;
    }

    .video-placeholder2 {
        display: none;
    }

    .card-body {
        padding: 20px;
        clip-path: none;
    }

    .register-btn {
        width: 100%;
        padding: 12px 20px;
    }

    .header-content span {
        font-size: 1rem;
    }
}
