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

body {
    background-color: #111111;
    background-image: radial-gradient(circle, #333 1px, transparent 1px);
    background-size: 30px 30px;
    color: white;
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
}

.v{
    display: inline-flex;
    gap: 8px;
}

/* Navbar Styles */
.navbar {
    background-color: #000000;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #E62058;
    cursor: pointer;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #c01a47;
}

/* Center Navigation */
.nav-center {
    display: flex;
    gap: 2rem;
}

.nav-center2{
    display: none;
}

.nav-tab {
    background: none;
    border: 2px solid transparent;
    color: #ccc;
    padding: 0.5rem 1.1rem;
    font-size: 14px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-tab:hover {
    color: white;
    border-color: #333;
    background-color: rgba(255, 255, 255, 0.05);
}

.nav-tab.active {
  
    background: #262626;
}

/* Right Side Buttons */
.nav-right {
    display: flex;
    gap: 1rem;
}
.nav-btn {
    background: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #E62058, #cf8397);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    position: relative;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-radius: 6px;
    z-index: -1;
}
.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 32, 88, 0.4);
}

.nav-btn.secondary {
    display: inline-flex;
    background:#121212;
    color: white;
    font-size: 12px;
    gap: 8px;
}

.nav-btn.secondary:hover {
    background: #E62058;
    color: white;
}

/* Content Area */
.content {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}






@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.content-card {
    padding: 2rem;
    margin-bottom: 2rem;
    

.content-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #E62058;
    text-align: center;
}

.content-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ccc;
    text-align: center;
    margin-bottom: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: rgba(230, 32, 88, 0.1);
    border: 1px solid #E62058;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

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


.t{
    display: block;
    color: white;
    font-size: 40px;
    font-weight: 700;

}

.t2{
    display: block;
    color: #808080;


}


.tv{
    color: #808080;
}

.stats{
    display: flex;
    justify-content:space-between;
    gap: 24px;

}

.bcard{
    background-color: #000000;
    border-radius: 12px;
    padding: 20px 20px;
    width: 100%;
    border: 1px solid rgb(41, 41, 41);
  
}

.dcards{
        margin-top: 25px;
        display: flex;
        gap: 40px;

}

.chain{
        background-color: #0e0d0d;
    color: #808080;
    font-size: 13px;
    height: 40px;
    padding: 10px 20px;
    border-radius: 10px;

}
.mm{
    display: grid;
    place-items: center;
    background-color: #000000;
    border-radius: 12px; 
    padding: 20px 25px;
    margin-top: 24px;
}

.two{
   display: flex;
   justify-content: space-between;
}

.rr {
    background: linear-gradient(to right, #10A1C5, #A507FC);
    /* Or you can use angle: */
    /* background: linear-gradient(90deg, #E62058, #c01a47); */
    
    /* Additional styling you might want */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding:4px 10px;
    border-radius:20px;
    color: white;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}
.st{
        margin-top: 18px;
        background-color: #141414;
        padding: 20px;
        border-radius: 10px;

}
.row{
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.rr:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(230, 32, 88, 0.4);
}
/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-center {
        display: none;

    }

    .dcards{
        flex-direction: column;
    }

    .nav-center2{
    display: block;
    margin-bottom: 20px;
}

    .content {
        padding: 2rem 1rem;
    }
}