/* Base CSS */

/* font family */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'Pragtice';
    src: url('../fonts/pragtice.otf');
    font-weight: 400;
}

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

:root {
    --primary-red: #FCD535;
    --primary-dark: #0a0a0a;
    --secondary-dark: #151515;
    --accent-red: #FFE566;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: var(--primary-dark);
    color: #fff;
}
h1, h2, h3 {
    font-family: 'Pragtice';
}
.container {
    padding: 0 15px;
}

a {
    text-decoration: none;
    transition: all .3s;
}
ul {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}
input:focus {
    outline: none;
}
.theme-btn {
    padding: 1px;
    background: linear-gradient(180deg, var(--primary-red) 0%, var(--accent-red) 100%);
    border-radius: 12px;
}
.theme-btn a {
    display: inline-block;
    color: #fff;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 16px;
    background-color: var(--primary-dark);
    transition: all 0.3s ease;
    font-weight: 600;
}
.theme-btn a:hover {
    background-color: transparent;
    color: #000;
}
.title-logo {
    gap: 7px;
    padding: 10px;
    border-radius: 50px;
    background: linear-gradient(180deg, rgba(16, 220, 173, 0.10) 0%, rgba(0, 170, 247, 0.10) 100%);
    margin-bottom: 12px;
}
.title-logo span {
    color: #10DCAD;
    font-size: 18px;
    font-weight: 500;
}
.section-title h2 {
	background: linear-gradient(92deg, #FFF 21.67%, #222 82.47%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	font-size: 20px;
	line-height: 35px;
}
.section-title p {
    line-height: 30px;
}
/* Base css end */

/* header area start */
.header-area {
    padding-top: 60px;
}
.main-menu {
    gap: 32px;
}
.main-menu li a {
    color: #fff;
}
.main-menu li a:hover {
    color: #FFFFFF99;
}
.main-menu li a.active {
    color: transparent;
    background: var(--Blue-Gradient, linear-gradient(180deg, #10DCAD 0%, #00AAF7 100%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.menu-sm-toggler {
    gap: 7px;
    line-height: 1;
}
.menu-sm-toggler .menu-text {
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    width: 0;
    transition: all .3s;
}
.menu-sm-toggler .menu-text.active {
    opacity: 1;
    visibility: visible;
    width: auto;
}
.menu-close, .menu-bar {
    opacity: 0;
    visibility: hidden;
    width: 0;
    transition: all .3s;
}
.menu-close.active, .menu-bar.active {
    opacity: 1;
    visibility: visible;
    width: auto;
}
.mobile-menu-wrapper {
	clear: both;
    max-height: 0;
    transition: all .3s ease-out;
    visibility: hidden;
}
.mobile-menu-wrapper.active {
    margin-top: 32px;
    max-height: 580px;
    visibility: visible;
} 
.mobile-menu {
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(252, 213, 53, 0.10) 0%, rgba(255, 229, 102, 0.10) 100%);
    padding: 74px 0 83px;
}
.menu-nav {
    gap: 30px;
    margin-bottom: 80px;
}
.menu-nav .menu-btn {
    width: max-content;
}
.menu-social {
    padding: 12px 22px;
    gap: 40px;
    border-radius: 50px;
    background: var(--secondary-dark);
}
.menu-social a {
    color: #fff;
    line-height: 1;
}
.menu-social a:hover {
    color: var(--accent-red);
}
.menu-social a svg path {
    transition: all .3s;
}
.menu-social a:hover svg path {
    fill: var(--accent-red);
}
/* header area end */

/* hero area start */
.hero-area {
    padding-top: 80px;
}

.hero-content {
    padding-top: 30px;
}

.hero-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.hero-social-links .social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(252, 213, 53, 0.05);
    border-radius: 12px;
    color: #fff;
    transition: all 0.3s ease;
}

.hero-social-links .social-link:hover {
    background: rgba(252, 213, 53, 0.1);
    transform: translateY(-2px);
}

.hero-social-links .social-link i {
    font-size: 18px;
    color: var(--accent-red);
}

.hero-social-links .social-link span {
    font-size: 14px;
    font-weight: 500;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-btns .theme-btn {
    margin: 0;
}

@media (max-width: 991px) {
    .hero-content {
        padding-top: 0;
        margin-bottom: 40px;
    }
    
    .hero-social-links {
        justify-content: center;
    }

    .hero-btns {
        justify-content: center;
    }
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-red), var(--accent-red));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 32px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-tag:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-tag i {
    color: var(--accent-red);
}

.feature-tag span {
    color: #fff;
    font-weight: 500;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 32px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.hero-stats .stat {
    background: rgba(255, 255, 255, 0.03);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-stats .stat:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.hero-stats .stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.hero-stats .stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
}

.hero-title-top {
    padding: 8px 10px;
    border-radius: 50px;
    background: linear-gradient(180deg, rgba(16, 220, 173, 0.10) 0%, rgba(0, 170, 247, 0.10) 100%);
    gap: 32px;
    margin-bottom: 40px;
}
.hero-title-top .subtitle {
    gap: 12px;
    font-size: 12px;
}
.hero-title-btn {
    border-radius: 50px;
}
.hero-title-btn a {
    font-size: 10px;
    padding: 7px 25px;
    border-radius: 50px;
}
.hero-bg {
	top: 90px;
}
.hero-btn-wrap {
    gap: 14px;
}
.hero-btn a {
    font-size: 16px;
}
.hero-btn-wrap a img {
	width: 24px;
}
.hero-social {
    gap: 60px;
    margin-top: 44px;
    margin-bottom: 48px;
}
.hero-social a {
    color: #fff;
    line-height: 1;
}
.hero-social a:hover {
    color: #00AAF7;
}
.hero-social a svg path {
    transition: all .3s;
}
.hero-social a:hover svg path {
    fill: #00AAF7;
}
.hero-brand {
	gap: 40px;
}
/* hero area end */

/* feature area start */
.feature-area {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--primary-dark), var(--secondary-dark));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    position: relative;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    transition: all 0.4s ease;
    cursor: pointer;
    /* border: 1px solid rgba(255, 255, 255, 0.05); */
}

.feature-item:hover {
    background: linear-gradient(180deg, rgba(252, 213, 53, 0.10) 0%, rgba(255, 229, 102, 0.10) 100%);
    transform: translateY(-5px);
}

.feature-number {
    position: absolute;
    top: -20px;
    right: 40px;
    font-size: 80px;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-red), transparent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
    font-family: 'Pragtice';
    transition: all 0.4s ease;
}

.feature-item:hover .feature-number {
    background: linear-gradient(180deg, var(--primary-red) 0%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.1);
}

.feature-content {
    position: relative;
    z-index: 1;
}

.feature-content h4 {
    font-size: 24px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-item:hover .feature-content h4 {
    background: linear-gradient(45deg, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-red));
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-line {
    background: linear-gradient(90deg, var(--primary-red), var(--accent-red));
    width: 80px;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-content p {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-item {
        padding: 30px;
    }
    
    .feature-number {
        font-size: 60px;
        top: -15px;
        right: 30px;
    }
}

@media (max-width: 576px) {
    .feature-item {
        padding: 25px;
    }
    
    .feature-number {
        font-size: 50px;
        top: -10px;
        right: 20px;
    }
    
    .feature-content h4 {
        font-size: 20px;
    }
}
/* feature area end */

/* bot area start */
.bot-area-title {
    margin-bottom: 64px;
}
.bot-area-title h2 {
    margin-bottom: 24px;
    max-width: 700px;
}
.bot-area-title p {
	max-width: 860px;
}
.bot-wrapper .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}
.alpha-bot-container {
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(180deg, #10DCAD 0%, #00AAF7 100%);


}
.alpha-bot {
    border-radius: 50px;
    background-color: #01EDFA;
    padding: 66px 16px 26px;
}
.alpha-bot .title-logo {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(34, 34, 34, 0.10) 100%);
    }
.alpha-bot .title-logo span {
    color: #222;
}
.alpha-bot .bot-title h3 {
    color: #222;
    font-size: 20px;
    line-height: 35px;
}

.bot-thumb {
    margin: 50px 0;
}
.bot-tags {
    gap: 28px 19px;
}
.bot-tags a {
	border-radius: 50px;
	border: 1px solid #000;
	padding: 8px 20px;
	color: #222;
	line-height: 1;
}
.bot-tags a:hover {
    background-color: #222;
    border-color: #222;
    color: #fff;
}
.single-bot {
    border-radius: 30px;
    border: 1px solid rgba(238, 238, 238, 0.20);
    padding: 50px 12px 16px 24px;
}
.single-bot h4 {
    font-size: 20px;
    margin-bottom: 8px;
    background: var(--Blue-Gradient, linear-gradient(180deg, #10DCAD 0%, #00AAF7 100%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.single-bot p {
    line-height: 40px;
}
/* bot area end */

/* token area start  */
.token-area {
    padding: 135px 0 174px;
}
.token-area-title {
    margin-bottom: 75px;
}
.token-wrapper .row {
    --bs-gutter-x: 20px;
}
.token {
    border-radius: 50px;
    background-color: #00AAF7;
    padding: 75px 30px 47px;
}
.token-title {
    padding-left: 27px;
    margin-bottom: 111px;
}
.token-title h4 {
    font-size: 30px;
    background: linear-gradient(94deg, #222 22.47%, #222 132.24%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 14px;
}
.token-title p {
    color: #222222;
    line-height: 40px;
}
.token-logo {
    margin-bottom: 132px;
    max-width: 610px;
}
.token-logo img {
	width: 100%;
}
.token-tags {
    padding-left: 27px;
}
.buy-token {
    padding-top: 160px;
    border: 1px solid #00AAF7;
    background: #010709;
}
.token-icon h3 {
    font-size: 20px;
    line-height: 35px;
    margin-top: 16px;
    margin-bottom: 70px;
}
.token-icon img {
	width: 307px;
}
/* token area end  */

/* cta area start */
.cta-area {
    padding-bottom: 192px;
}
.cta-wrapper {
    padding: 34px 0 100px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(16, 220, 173, 0.05) 0%, rgba(0, 170, 247, 0.05) 100%);
}
.cta-wrapper.cta-light-bg {
    background: linear-gradient(180deg, rgba(16, 220, 173, 0.10) 0%, rgba(0, 170, 247, 0.10) 100%);
}
.cta-logo {
    width: 720px;
}
.cta-desc{
    line-height: 30px;
    max-width: 860px;
    margin-bottom: 35px;
}
.cta-bg {
	top: 140px;
}
/* cta area end */

/* footer area start */
.footer-area {
    position: relative;
    background: var(--secondary-dark);
    padding: 80px 0;
    overflow: hidden;
}

.footer-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(252, 213, 53, 0.05), rgba(255, 229, 102, 0.05));
    z-index: 0;
}

.footer-wrapper {
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-area h2 {
    font-size: 42px;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-area p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.footer-area .theme-btn {
    margin-bottom: 50px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 59, 59, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(45deg, var(--primary-red), var(--accent-red));
    transform: translateY(-3px);
    color: #000;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .footer-area {
        background: linear-gradient(180deg, rgba(252, 213, 53, 0.08) 0%, rgba(255, 229, 102, 0.08) 100%) !important;
    }
    
    .footer-area {
        padding: 80px 0;
    }
    
    .footer-area h2 {
        font-size: 32px;
    }
    
    .footer-area p {
        font-size: 16px;
    }
    
    .social-links {
        gap: 20px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
/* footer area end */

/* launchpad page start */
.launchpad-header .main-menu {
    gap: 27px;
    border-radius: 50px;
    background: linear-gradient(180deg, rgba(255, 59, 59, 0.10) 0%, rgba(255, 107, 107, 0.10) 100%);
    padding: 10px 29px;
}
.launchpad-header .main-menu li a {
    color: #FFFFFF99;
}
.launchpad-header .main-menu li a:hover {
    color: #fff;
}

.launchpad-area {
    padding-bottom: 130px;
}
/* hero area start */
.launchpad-hero {
    padding: 110px 0 70px;
}
.launchpad-hero .hero-title {
	margin-bottom: 110px;
}
.hero-nav {
    gap: 105px;
    margin-bottom: 70px;
}
.hero-nav li a {
    font-size: 20px;
    line-height: 35px;
    font-family: 'Pragtice';
    background: linear-gradient(94deg, rgba(255, 255, 255, 0.50) 22.47%, rgba(34, 34, 34, 0.50) 132.24%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    padding-bottom: 13px;
    position: relative;
}
.hero-nav li a:after {
    content: '';
    width: 100%;
    height: 1px;
    background: #10DCAD;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
}
.hero-nav li a.active {
    background: linear-gradient(180deg, #10DCAD 0%, #00AAF7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.hero-nav li a.active::after {
    opacity: 1;
    visibility: visible;
}
.hero-nav li a:hover {
    background: linear-gradient(180deg, #10DCAD 0%, #00AAF7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.search-area {
    gap: 21px;
}
.search-input {
	width: 482px;
	height: 65px;
}
.search-input input {
	border-radius: 10px;
	border: 1px solid #4F4F55;
	font-size: 20px;
	color: #4F4F55;
	padding-left: 50px;
}
.search-input input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.search-icon {
    left: 15px;
}
.filter-btn {
    border-radius: 10px;
    border: 1px solid #4F4F45;
    height: 63px;
    padding: 0 24px;
}
/* hero area end */

.launchpad-wrapper .row {
    --bs-gutter-x: 23px;
    --bs-gutter-y: 23px;
}
.launchpad {
    border-radius: 20px;
}
.launchpad-thumb {
    border-radius: 20px 20px 0 0;
    height: 243px;
}
.launchstation .launchpad-thumb {
    background: linear-gradient(180deg, rgba(16, 220, 173, 0.10) 0%, rgba(0, 170, 247, 0.10) 100%);
}
.launchstation .launchpad-thumb img {
    width: 156px;
}

.launchpad-thumb img {
    width: 178px;
}

.launchpad-content {
    border-radius:0 0 20px 20px;
    background-color: #0C0C12;
    padding: 11px 23px 31px;
}
.launchpad-icon {
    gap: 8px;
    margin-bottom: 24px;
}
.launchpad-icon img {
    width: 40px;
}
.launchpad-icon span {
    font-size: 25px;
}
.launchpad-tags {
    gap: 11px 20px;
    margin-bottom: 52px;
}
.launchpad-tags a {
	font-size: 18px;
	color: #10DCAD;
	padding: 9px 13px 9px 13px;
	border-radius: 50px;
	background-color: #141418;
	display: inline-block;
	min-width: 88px;
	text-align: center;
}
.launchpad-detail {
    gap: 11px;
}
.launchpad-detail .single-detail span {
    line-height: 40px;
}
.launchpad-detail .single-detail span:first-child {
    opacity: 0.6;
}
.detail-btn {
    padding: 11px 25px;
    color: #fff;
    font-size: 18px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #444;
    margin-top: 3px;
}
.detail-btn:hover {
    background-color: #444;
}

.optimism .launchpad-thumb {
    background-color: #180C13;
}
.optimism .launchpad-tags a {
    color: #FF0420;
}
.base-launch .launchpad-thumb {
    background-color: #0E152A;
}
.base-launch .launchpad-tags a {
    color: #236AFF;
}
.polygon .launchpad-thumb {
    background-color: #6C00F61A;
}
.polygon .launchpad-tags a {
    color: #6C00F6;
}
.starknet .launchpad-thumb {
    background-color: #EC796B1A;
}
.starknet .launchpad-thumb img {
    width: 194px;
}
.starknet .launchpad-tags a {
    color: #EC796B;
}
/* launchpad page end */

/* project detail page start */
.project-detail-area {
	padding-bottom: 70px;
}
.back-btn {
    gap: 17px;
    color: #D9D9D9;
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 65px;
}
.back-btn:hover {
    color: #10DCAD;
}
.project-detail-area .launchpad-hero {
	padding: 55px 0 65px;
}
.project-detail-area .hero-nav {
    gap: 57px;
}
.project-detail-area .hero-nav li a {
    font-family: 'Poppins', sans-serif; 
    color: #D9D9D9;
    -webkit-background-clip: unset;
    background-clip: unset;
    background: unset;
    -webkit-text-fill-color: unset;
}
.project-detail-area .hero-nav li a:hover {
    color: #fff;
}
.project-detail-area .hero-nav li a.active {
    background: var(--Blue-Gradient, linear-gradient(180deg, #10DCAD 0%, #00AAF7 100%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.project-detail-wrap {
    padding: 56px 66px;
    border-radius: 20px;
    background-color: #121218;
}
.detail-top-title {
    gap: 32px;
}
.detail-top-logo {
    gap: 12px;
}
.detail-top-logo img {
    width: 40px;
}
.detail-top-logo h4 {
    font-size: 25px;
}
.detail-top-title .hero-social {
    gap: 60px;
    padding: 12px 22px;
    border-radius: 50px;
    background-color: #0C0C12;
}
.detail-top-desc {
    margin-top: 25px;
    margin-bottom: 60px;
    line-height: 35px;
}
.registration-countdown {
    max-width: 545px;
    border-radius: 10px;
    background-color: #0C0C12;
    padding: 26px 36px;
    margin-bottom: 35px;
}
.countdown-title {
    line-height: 35px;
    margin-bottom: 14px;
}
.countdown-timer {
    font-size: 25px;
    line-height: 40px;
    margin-bottom: 58px;
}
.registration-btn {
    background: linear-gradient(#010A0D, #010A0D) padding-box, linear-gradient(180deg, #10DCAD 0%, #00AAF7 100%) border-box;
    border: 1px solid transparent;
}
.registration-btn a {
    background: var(--Blue-Gradient, linear-gradient(180deg, #10DCAD 0%, #00AAF7 100%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.project-blk-title {
    font-size: 25px;
    margin-bottom: 12px;
}
.project-metrics .project-blk-title {
    margin-bottom: 38px;
}
.project-metrics {
    margin-bottom: 60px;
}
.metrics-wrapper {
    gap: 260px;
}
.metrics {
    gap: 11px;
}
.single-metrics span {
    line-height: 40px;
    gap: 8px;
}
.single-metrics span:first-child {
    opacity: 0.6;
}
.single-metrics span img {
    width: 25px;
}
.project-desc p {
    line-height: 38px;
}
/* project detail page end */

/* ido detail page start */
.ido-timeline {
    margin-bottom: 48px;
}
.ido-timeline .project-blk-title {
    margin-bottom: 66px;
}
.timeline-wrapper {
    gap: 62px;
}
.timeline{
    gap: 40px;
}
.timeline span {
    font-family: 'Inter', sans-serif;
    color: #8C8B95;
}
.timeline-period {
    padding: 10px;
    width: 372px;
    border-radius: 50px;
    background-color: #0C0C12;
}
.timeline::after {
    content: '';
    width: 1px;
    height: 59px;
    opacity: 0.2;
    background-color: #8C8B95;
    position: absolute;
    top: calc(100% + 1px);
    left: 7px;
}
.timeline:last-child::after {
    display: none;
}
.terms .project-blk-title {
    margin-bottom: 30px;
}
.terms-list p {
    line-height: 38px;
}
/* ido detail page end */

/* portfolio page start */
.portfolio-header .header-btn a {
    padding: 11px 57px;
}
.portfolio-header .header-btn .btn-icon {
    left: 25px;
}
.portfolio-header .header-btn .btn-arrow {
    right: 25px;
}
.portfolio-header .dropdown .dropdown-toggle::after {
	display: none;
}
.portfolio-header .dropdown-menu {
	background: linear-gradient(#010A0D, #010A0D) padding-box, linear-gradient(180deg, #10DCAD 0%, #00AAF7 100%) border-box;
	border: 1px solid transparent;
	border-radius: 10px;
    margin-top: 8px !important;
}
.portfolio-header .dropdown-menu li a {
    padding: 11px 25px;
}
.portfolio-header .dropdown-menu li a:hover {
    color: #10DCAD;
}

.portfolio-hero {
	padding: 90px 0 105px;
}
.portfolio-hero .hero-title {
	margin-bottom: 44px;
}
.portfolio-hero .hero-subtitle {
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 128px;
}

.portfolio-wrapper .launchpad-content {
	border-radius: 10px;
	padding: 34px 33px 51px 40px;
}
.portfolio-wrapper .launchpad-icon {
	margin-bottom: 32px;
}
.status-btn {
	padding: 10px 41px;
	border-radius: 50px;
	background: rgba(255, 165, 0, 0.20);
	color: #FFA500;
	margin-bottom: 48px;
}
.status-btn.completed {
    color: #00E725;
    background: rgba(122, 227, 139, 0.20);
}
.portfolio-wrapper .launchpad-detail {
	gap: 18px;
}
.portfolio-wrapper .detail-btn {
	margin-top: 30px;
}
/* portfolio page end */

/* registered page start */
.registration-area {
    padding-bottom: 200px;
}
.registration-top-logo {
	gap: 12px;
    margin-bottom: 50px;
}
.registration-top-logo img {
    width: 40px;
}
.registration-top-logo h4 {
    font-size: 25px;
}
.registraion-area-title {
	font-size: 25px;
	margin-bottom: 60px;
	max-width: 482px;
}
.registration-wrapper {
	grid-template-columns: 772px 1fr;
	gap: 28px;
}
.profile-wrapper, .registration-area  .terms {
    padding: 25px;
    border-radius: 20px;
    background: #141418;
}
.profile-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.profile-blk {
    border-radius: 10px;
    background: #0C0C12;
    gap: 19px;
    text-align: center;
}
.profile-blk .span {
    line-height: 40px;
}
.profile-blk .countdown-timer {
    font-size: 16px;
}
.profile-blk-title {
    opacity: 0.6;
}
.registration-wrapper .terms-list p {
	line-height: 65px;
}


/* registered page end */


/* filter search start */
.launchpad-wrapper::after {
    content: '';
    width: 100%;
    height: 100%;
    background: #0C0C12; 
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.launchpad-wrapper.active::after {
    opacity: 0.7;
    visibility: visible;
}
.filter-search {
    top: calc(100% + 30px);
    right: -11px;
    max-width: 545px;
    width: 100%;
    border-radius: 20px;
    background: #141418;
    padding: 30px 50px 38px 30px;
    opacity: 0;
    visibility: hidden;
    z-index: 9;
    transition: all .3s;
}
.filter-search.active {
    opacity: 1;
    visibility: visible;
}
.filter-search-title {
    font-size: 25px;
    margin-bottom: 20px;
}
.filter-wrapper {
	gap: 0 100px;
}
.filter-title {
    font-size: 16px;
    line-height: 40px;
    margin-bottom: 11px;
}
.filter-input {
    gap: 7px;
    margin-bottom: 12px;
}
.filter-input label {
    color: #fff;
    padding-left: 38px;
    line-height: 40px;
    gap: 7px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.filter-input label img {
    width: 16px;
}
  
/* Hide the browser's default radio button */
.filter-input label input {
    cursor: pointer;
}
  
/* Create a custom radio button */
.checkmark { 
    height: 16px;
    width: 16px;
    background: linear-gradient(#141418, #141418) padding-box, linear-gradient(180deg, rgba(16, 220, 173, 0.5) 0%, rgba(0, 170, 247, 0.5) 100%) border-box;
    border: 1px solid transparent;
}
  
/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
  
/* Show the indicator (dot/circle) when checked */
.filter-input label input:checked ~ .checkmark:after {
    display: block;
}
  
/* Style the indicator (dot/circle) */
.filter-input label .checkmark::after {
	top: 0;
	left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: linear-gradient(180deg, rgba(16, 220, 173, 0.5) 0%, rgba(0, 170, 247, 0.5));
}

.filter-search-btn {
    border: 1px solid transparent;
    border-radius: 10px;
    background: linear-gradient(#141418, #141418) padding-box, linear-gradient(180deg, #10DCAD 0%, #00AAF7 100%) border-box;
    margin-top: 54px;
}
.filter-search-btn button {
    padding: 11px 25px;
    border-radius: 10px;
    font-size: 18px;
    background: var(--Blue-Gradient, linear-gradient(180deg, #10DCAD 0%, #00AAF7 100%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* filter search end */

/* Presale Form Styles */
.presale-form {
    background: var(--secondary-dark);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.presale-form h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 24px;
}

.presale-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    color: #fff;
    width: 100%;
    margin-bottom: 15px;
}

.presale-input:focus {
    border-color: rgba(255, 255, 255, 0.2);
    outline: none;
}

.presale-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.connect-wallet-btn {
    background: linear-gradient(45deg, var(--primary-red), var(--accent-red));
    color: #000;
    border: none;
    border-radius: 10px;
    padding: 12px 25px;
    width: 100%;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.connect-wallet-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.presale-info {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.presale-info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.presale-info-item:last-child {
    margin-bottom: 0;
}

/* Stats Grid Styles */
.presale-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 15px 10px;
    text-align: center;
    word-break: break-word;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.stat-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-red);
    margin-bottom: 5px;
    word-wrap: break-word;
    line-height: 1.4;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* Referral Section Styles */
.referral-section {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.referral-section h4 {
    font-size: 18px;
    color: #fff;
}

.referral-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 15px 0;
}

.copy-referral {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.copy-referral input {
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
    color: #fff;
    font-size: 14px;
    width: 100%;
}

.copy-referral input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.copy-btn {
    background: var(--primary-red);
    color: #000;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 600;
}

.copy-btn:hover {
    background: var(--accent-red);
    transform: translateY(-2px);
}

.text-sm {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 576px) {
    .copy-referral {
        flex-direction: column;
    }
    
    .copy-referral input {
        width: 100%;
    }
    
    .copy-btn {
        width: 100%;
    }
}

/* About Section Styles */
.about-wrapper {
    position: relative;
    z-index: 1;
}

.about-box {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-border {
    position: relative;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, var(--primary-red), var(--accent-red));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.about-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-red), var(--accent-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-icon i {
    font-size: 24px;
    color: #000;
}

.feature-box {
    background: var(--secondary-dark);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-red), var(--accent-red));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

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

.feature-box:hover::after {
    opacity: 0.1;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, var(--primary-red), var(--accent-red));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-icon i {
    font-size: 20px;
    color: #000;
}

.feature-box h5 {
    font-size: 18px;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Tokenomics Section Styles */
.tokenomics-wrapper {
    position: relative;
}

.tokenomics-card {
    background: var(--secondary-dark);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.tokenomics-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(180deg, rgba(252, 213, 53, 0.10) 0%, rgba(255, 229, 102, 0.10) 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

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

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-red), var(--accent-red));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 22px;
    color: #000;
}

.tokenomics-card h4 {
    font-size: 20px;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Tax Stats Styles */
.tax-stats .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tax-stats .stat-value {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-red);
}

/* Distribution Chart Styles */
.distribution-chart {
    height: 250px;
    display: flex;
    align-items: flex-end;
    gap: 15px;
    padding: 20px 0;
}

.chart-item {
    flex: 1;
    background: linear-gradient(180deg, var(--primary-red), var(--accent-red));
    border-radius: 8px 8px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    position: relative;
}

.chart-item span {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.chart-item label {
    position: absolute;
    bottom: -25px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* Supply Stats Styles */
.supply-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.supply-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.supply-value {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-red);
    margin-bottom: 5px;
}

.supply-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.supply-progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.supply-progress .progress-bar {
    height: 100%;
    background: linear-gradient(180deg, var(--primary-red) 0%, var(--accent-red) 100%);
    border-radius: 3px;
}

.burn-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.burn-info i {
    color: var(--primary-red);
}

.burn-info span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* about area start */
.about-area {
    padding: 60px 0;
}
/* about area end */

/* tokenomics area start */
.tokenomics-area {
    padding: 60px 0;
}
/* tokenomics area end */

/* Staking Area Styles */
.staking-area {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--primary-dark), var(--secondary-dark));
}

.staking-area .connect-wallet-btn {
    display: inline-block;
    min-width: 200px;
    max-width: 300px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    margin: 0 auto;
}

.staking-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Staking Tabs */
.staking-tabs .nav-tabs {
    border: none;
    gap: 20px;
    margin-bottom: 40px;
}

.staking-tabs .nav-link {
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-radius: 12px;
    color: #fff;
    padding: 15px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.staking-tabs .nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-red);
}

.staking-tabs .nav-link.active {
    background: linear-gradient(180deg, var(--primary-red) 0%, var(--accent-red) 100%);
    color: #000;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
}

/* Staking Form */
.staking-form {
    background: var(--secondary-dark);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.staking-form .input-group {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.staking-form .form-control {
    background: transparent;
    border: none;
    color: #fff;
    padding: 15px;
    font-size: 16px;
}

.staking-form .form-control:focus {
    border-color: rgba(255, 255, 255, 0.2);
}

.staking-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.staking-form .btn-max {
    background: linear-gradient(180deg, var(--primary-red) 0%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Staking Stats */
.staking-stats .stat-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    word-break: break-word;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.staking-stats .stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.staking-stats .stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 5px;
    word-wrap: break-word;
    line-height: 1.4;
    background: linear-gradient(180deg, var(--primary-red) 0%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.staking-stats .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Details Card */
.details-card {
    background: var(--secondary-dark);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-label {
    color: rgba(255, 255, 255, 0.7);
}

.detail-value {
    color: var(--accent-red);
    font-weight: 600;
}

/* Instructions Card */
.instructions-card {
    background: var(--secondary-dark);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.instructions-card h4 {
    font-size: 24px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.instruction-content h5 {
    font-size: 18px;
    color: var(--accent-red);
    margin: 20px 0 10px;
}

.instruction-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    .staking-tabs .nav-link {
        padding: 12px 20px;
    }
}

@media (max-width: 576px) {
    .staking-tabs .nav-tabs {
        gap: 10px;
    }
    
    .staking-tabs .nav-link {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .staking-form {
        padding: 20px;
    }
    
    .details-card, .instructions-card {
        padding: 20px;
    }
}


/* Status Alert Styles */
.status-alert {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.3s ease;
  }
  
  .status-alert .status-icon {
    flex-shrink: 0;
    font-size: 20px;
    line-height: 0.1;
  }
  
  .status-alert .status-icon i {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .status-alert .status-message {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
  }
  
  /* Status Alert Variations */
  .status-alert .status-icon i.fa-exclamation-circle {
    background: linear-gradient(45deg, #ff4d4d, #ff8080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .status-alert .status-icon i.fa-check-circle {
    background: linear-gradient(45deg, #00cc66, #33ff99);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .status-alert .status-icon i.fa-info-circle {
    background: linear-gradient(45deg, #3399ff, #66b3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }