@font-face {
    font-family: lufga;
    src: url(./font/LufgaRegular.ttf);
}

@font-face {
    font-family: lufga-light;
    src: url(./font/LufgaLight.ttf);
}

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

html,
body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

#main {
    width: 100%;
    min-height: 100vh;
    background-color: #000;
}

#first-side {
    width: 100%;
    min-height: 100vh;
    padding: 30px 30px 0px 30px;
    background: linear-gradient(to bottom, #111, rgba(26, 26, 26, 0.5));
    position: relative;
}

#nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

#nav .nav-left h1 {
    font-size: 30px;
    font-family: lufga-light;
    color: #fff;
    font-weight: 300;
}

#nav .nav-center {
    border: 1px solid #1f1f1f;
    border-radius: 50px;
    background-color: #1f1f1f;
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 20px 40px;
}

#nav .nav-center a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-family: lufga-light;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

#nav .nav-center a span {
    position: relative;
    display: inline-block;
}

#nav .nav-center a span::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d5f803;
    box-shadow: 0 0 8px #d5f803, 0 0 15px #d5f803, 0 0 25px #d5f803;
    transition: width 0.4s ease;
}

#nav .nav-center a:hover span::before {
    width: 100%;
}

#nav .nav-center a:hover {
    color: #d5f803;
}

#nav .nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

#nav .nav-right i {
    color: #fff;
    font-size: 22px;
}

#nav .nav-right button {
    padding: 15px 30px;
    border-radius: 25px;
    border: 1px solid #d5f803;
    background-color: transparent;
    color: #fff;
    font-size: 18px;
    font-family: lufga-light;
    cursor: pointer;
    transition: all 0.3s ease;
}

#nav .nav-right button:hover {
    background-color: #d5f803;
    color: #000;
    box-shadow: 0 0 20px rgba(213, 248, 3, 0.5);
}

#center-text {
    padding-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
}

#center-text h1 {
    text-align: center;
    color: #fff;
}

#center-text h1:nth-of-type(1) {
    font-size: 60px;
    font-weight: 100;
    font-family: lufga-light;
}

#center-text h1:nth-of-type(2) {
    font-size: 60px;
    font-family: lufga;
}

#center-text h1 img {
    height: 40px;
}

#arrow {
    position: absolute;
    top: 20vw;
    left: 20vw;
}

#arrow img {
    width: 200px;
}

#left-cont {
    position: absolute;
    top: 30vw;
    left: 0;
}

#left-cont p {
    font-family: lufga-light;
    color: #fff;
    font-weight: 100;
}

#left-cont .circle {
    padding: 20px;
    margin-left: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
#left-cont .inner-circle {
    padding: 5px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 249, 3, 0.199), #0f0f0f, #0f0f0f, #0f0f0f);
    display: flex;
    align-items: center;
    justify-content: center;
}

#left-cont .circle-img {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #1f1f1f;
}

#left-cont .circle-img img {
    position: absolute;
    top: 1vw;
    left: 1vw;
    height: 120px;
}

#middle-img {
    text-align: center;
}

#middle-img img {
    height: 35vw;
    max-width: 100%;
    margin-top: 50px;
}

#right-cont {
    position: absolute;
    top: 30vw;
    right: 7vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
}

#right-cont .users h2 {
    color: #fff;
    font-family: lufga-light;
    font-size: 40px;
}

#right-cont .users h2 span {
    color: #d5f803;
}

#right-cont .users p {
    color: #d5f803;
    font-family: lufga-light;
}

#right-cont .users:nth-child(1) p,
#right-cont .users:nth-child(2) p {
    border-bottom: 2px solid #d5f803;
    padding-bottom: 30px;
    display: inline-block;
    width: 150px;
}

.right-logo {
    position: relative;
    width: 80px;
    height: 80px;
    background-color: #1f1f1f;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-logo img {
    height: 45px;
}

.circular-text {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}

#second-side {
    width: 100%;
    min-height: 100vh;
    background-color: #000;
    padding: 150px 60px;
    position: relative;
}

#top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

#top-bar .left h3 {
    color: #d5f803;
    font-size: 16px;
    font-family: lufga-light;
}

#top-bar .left h1 {
    color: #fff;
    font-size: 40px;
    font-family: lufga-light;
}

#top-bar .center p {
    color: #fff;
    font-family: lufga-light;
}

#top-bar .right {
    display: flex;
    gap: 10px;
}

#top-bar .right button {
    padding: 15px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#top-bar .right i {
    font-size: 40px;
}

#top-bar .right button:nth-of-type(1) {
    background-color: transparent;
    border: 1px solid #fff;
    color: white;
}

#top-bar .right button:nth-of-type(1):hover {
    background-color: #fff;
    color: #000;
}

#top-bar .right button:nth-of-type(2) {
    border: none;
    background-color: #d5f803;
    color: #000;
}

#top-bar .right button:nth-of-type(2):hover {
    background-color: #b8d403;
}

#second-side #arrow {
    position: absolute;
    top: 15vw;
    left: 25vw;
}

#cards-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-top: 180px;
    flex-wrap: wrap;
}

.card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.full-card {
    width: 350px;
    height: 450px;
    background-color: #1f1f1f;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px 20px;
}

.nft-card {
    position: relative;
    width: 280px;
    height: 380px;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 380px;
    border-radius: 20px;
    clip-path: path(
    "M 0,20 A 20,20 0,0,1 20,0 L 115,0 L 175,45 L 265,45 A 20,20 0,0,1 285,65 L 285,365 A 20,20 0,0,1 265,385 L 175,385 L 175,360 A 15,15 0,0,0 160,345 L 0,345 L 0,20 Z"
  );
}
.purple-bg {
    background: linear-gradient(135deg, #8b00ff 0%, #5500cc 100%);
}

.yellow-bg {
    background: linear-gradient(135deg, #d5f803 0%, #a8c503 100%);
}

.orange-bg {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4500 100%);
}

.card-content {
    position: relative;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-header {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    position: relative;
}

.limited-badge {
    position: absolute;
    left: -80px;
    top: 60px;
    background-color: #d5f803;
    color: #000;
    padding: 8px 15px;
    border-radius: 20px;
    font-family: lufga-light;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
}

.card-wrapper:nth-child(2) .limited-badge {
    background-color: #ff6b35;
    color: #fff;
}

.timer {
    text-align: right;
    color: #fff;
    font-family: lufga-light;
}

.timer span:first-child {
    display: block;
    font-size: 12px;
    opacity: 0.8;
    text-align: left;
}

.timer .time {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-top: 3px;
}

.card-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index:0;
}

.card-image img {
    width: 280px;
    height: 280px;
    object-fit: cover;
}

.card-footer {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.price {
    position: absolute;
    right: 11vw;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-family: lufga-light;
    font-size: 16px;
}

.price i {
    color: #d5f803;
    font-size: 20px;
}

.bid-btn {
    width: 280px;
    padding: 18px 60px;
    border-radius: 15px;
    font-family: lufga-light;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.purple-btn {
    background-color: transparent;
    color: #8b00ff;
    border: 2px solid #8b00ff;
}

.purple-btn:hover {
    background-color: #8b00ff;
    color: #fff;
    box-shadow: 0 0 20px rgba(139, 0, 255, 0.5);
}

.yellow-btn {
    background-color: transparent;
    color: #d5f803;
    border: 2px solid #d5f803;
}

.yellow-btn:hover {
    background-color: #d5f803;
    color: #000;
    box-shadow: 0 0 20px rgba(213, 248, 3, 0.5);
}

.orange-btn {
    background-color: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.orange-btn:hover {
    background-color: #ff6b35;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

/* ========== TABLET STYLES (768px - 1024px) ========== */
@media screen and (max-width: 1024px) {
    #nav {
        padding: 20px 30px;
        display: flex;
        gap: 40px;
    }

    #nav .nav-left h1 {
        font-size: 24px;
    }

    #nav .nav-center {
        gap: 40px;
        padding: 15px 30px;
    }

    #nav .nav-center a {
        font-size: 16px;
    }

    #nav .nav-right button {
        padding: 20px;
        font-size: 15px;
    }

    #center-text {
        padding-top: 20px;
    }

    #center-text h1:nth-of-type(1),
    #center-text h1:nth-of-type(2) {
        font-size: 5vw;
    }

    #center-text h1 img {
        height: 32px;
    }

    #arrow {
        top: 34vw;
    }

    #arrow img {
        width: 100px;
        height: 100px;
        object-fit: cover;
    }

    #second-side #arrow {
        top: 20vw;
    }

    #middle-img {
        margin-top: 40px;
    }

    #left-cont {
        top: 35vw;
    }

    #left-cont .circle {
        margin-left: 20px;
        margin-top: 50px;
    }

    #left-cont .circle-img {
        width: 120px;
        height: 120px;
    }

    #left-cont .circle-img img {
        height: 100px;
        top: 10px;
        left: 10px;
    }

    #right-cont {
        top: 30vw;
        right: 5vw;
    }

    #right-cont .users h2 {
        font-size: 32px;
    }

    #second-side {
        padding: 100px 40px;
    }

    #top-bar .left h1 {
        font-size: 32px;
    }

    #cards-container {
        gap: 25px;
        margin-top: 120px;
    }

    .full-card {
        width: 300px;
        height: 400px;
    }

    .nft-card {
        width: 240px;
        height: 340px;
    }

    .card-bg {
        width: 240px;
        height: 340px;
    }

    .card-image img {
        width: 250px;
        height: 250px;
    }

    .timer {
        margin-top: -10px;
    }

    .price {
        right: 15vw;
    }

    .bid-btn {
        width: 240px;
    }

    .limited-badge {
        left: -70px;
        top: 50px;
    }
}

/* ========== MOBILE STYLES (481px - 767px) ========== */
@media screen and (max-width: 767px) {
    #first-side {
        padding: 20px;
    }

    #nav {
        padding: 15px 20px;
    }

    #nav .nav-left h1 {
        font-size: 20px;
    }

    #nav .nav-center {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        margin-top: 10px;
        display: none;
    }

    #nav .nav-center.active {
        display: flex;
    }

    #nav .nav-right {
        gap: 15px;
    }

    #nav .nav-right button {
        padding: 10px 20px;
        font-size: 14px;
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    #center-text {
        padding-top: 80px;
    }

    #center-text h1:nth-of-type(1),
    #center-text h1:nth-of-type(2) {
        font-size: 32px;
    }

    #center-text h1 img {
        height: 24px;
    }

    #arrow {
        display: none;
    }

    #left-cont {
        position: static;
        margin-top: 40px;
        padding: 0 20px;
    }

    #left-cont .circle {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    #left-cont .circle-img {
        width: 100px;
        height: 100px;
        flex-shrink: 0;
    }

    #left-cont .circle-img img {
        height: 80px;
        top: 10px;
        left: 10px;
    }

    #left-cont p br {
        display: none;
    }

    #middle-img {
        padding: 40px 20px;
    }

    #middle-img img {
        height: auto;
        width: 100%;
        max-width: 400px;
    }

    #right-cont {
        position: static;
        margin-top: 40px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        padding: 0 20px;
    }

    #right-cont .users {
        flex: 0 0 45%;
    }

    #right-cont .users h2 {
        font-size: 28px;
    }

    #right-cont .users:nth-child(1) p,
    #right-cont .users:nth-child(2) p {
        width: auto;
        padding-bottom: 15px;
    }

    .right-logo {
        margin-top: 30px;
        width: 70px;
        height: 70px;
    }

    .right-logo img {
        height: 40px;
    }

    .circular-text {
        width: 70px;
        height: 70px;
    }

    #second-side {
        padding: 80px 20px;
    }

    #second-side #arrow {
        display: none;
    }

    #top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    #top-bar .left h1 {
        font-size: 28px;
    }

    #top-bar .center p br {
        display: none;
    }

    #top-bar .right {
        align-self: center;
    }

    #top-bar .right i {
        font-size: 32px;
    }

    #cards-container {
        margin-top: 80px;
        gap: 40px;
    }

    .full-card {
        width: 100%;
        max-width: 350px;
    }

    .limited-badge {
        left: -60px;
        top: 45px;
        font-size: 11px;
    }
}

/* ========== SMALL MOBILE STYLES (320px - 480px) ========== */
@media screen and (max-width: 480px) {
    #nav .nav-left h1 {
        font-size: 16px;
    }

    #nav .nav-right i {
        font-size: 20px;
    }

    #center-text {
        padding-top: 60px;
    }

    #center-text h1:nth-of-type(1),
    #center-text h1:nth-of-type(2) {
        font-size: 24px;
        line-height: 1.3;
    }

    #center-text h1 img {
        height: 18px;
    }

    #left-cont .circle {
        flex-direction: column;
        text-align: center;
    }

    #left-cont .circle-img {
        width: 90px;
        height: 90px;
    }

    #left-cont .circle-img img {
        height: 70px;
        top: 10px;
        left: 10px;
    }

    #left-cont p {
        font-size: 14px;
    }

    #middle-img {
        padding: 30px 15px;
    }

    #right-cont .users {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }

    #right-cont .users h2 {
        font-size: 24px;
    }

    #right-cont .users p {
        font-size: 14px;
    }

    .right-logo {
        width: 60px;
        height: 60px;
    }

    .right-logo img {
        height: 35px;
    }

    .circular-text {
        width: 60px;
        height: 60px;
    }

    #second-side {
        padding: 60px 15px;
    }

    #top-bar .left h3 {
        font-size: 14px;
    }

    #top-bar .left h1 {
        font-size: 24px;
    }

    #top-bar .center p {
        font-size: 14px;
    }

    #top-bar .right button {
        padding: 12px;
    }

    #top-bar .right i {
        font-size: 28px;
    }

    #cards-container {
        margin-top: 60px;
    }

    .full-card {
        width: 100%;
        max-width: 320px;
        height: 380px;
        padding: 30px 15px;
    }

    .nft-card {
        width: 220px;
        height: 320px;
    }

    .card-bg {
        width: 220px;
        height: 320px;
    }

    .card-content {
        padding: 15px;
    }

    .limited-badge {
        left: -50px;
        top: 40px;
        padding: 6px 12px;
        font-size: 10px;
    }

    .timer span:first-child {
        font-size: 11px;
    }

    .timer .time {
        font-size: 12px;
    }

    .card-image {
        width: 300px;
        height: 300px;
    }

    .card-image img {
        width: 235px;
        height: 235px;
    }

    .price {
        font-size: 14px;
        right: 30vw;
    }

    .price i {
        font-size: 18px;
    }

    .bid-btn {
        width: 220px;
        padding: 15px 40px;
        font-size: 14px;
    }
}

/* ========== EXTRA SMALL MOBILE (max 360px) ========== */
@media screen and (max-width: 360px) {
    #nav .nav-left h1 {
        font-size: 14px;
    }

    #center-text h1:nth-of-type(1),
    #center-text h1:nth-of-type(2) {
        font-size: 20px;
    }

    #center-text h1 img {
        height: 16px;
    }

    .full-card {
        max-width: 290px;
        height: 360px;
    }

    .nft-card {
        width: 200px;
        height: 300px;
    }

    .card-bg {
        width: 200px;
        height: 300px;
    }

    .card-image img {
        width: 220px;
        height: 220px;
    }

    .bid-btn {
        width: 200px;
        padding: 12px 30px;
    }

    .limited-badge {
        left: -45px;
        top: 35px;
    }
}

/* ========== LARGE DESKTOP (1440px+) ========== */
@media screen and (min-width: 1440px) {
    #nav {
        padding: 20px 80px;
    }

    #nav .nav-left h1 {
        font-size: 34px;
    }

    #nav .nav-center {
        gap: 80px;
        padding: 22px 60px;
    }

    #nav .nav-center a {
        font-size: 20px;
    }

    #center-text h1:nth-of-type(1),
    #center-text h1:nth-of-type(2) {
        font-size: 70px;
    }

    #center-text h1 img {
        height: 50px;
    }

    #second-side {
        padding: 180px 80px;
    }

    #top-bar .left h1 {
        font-size: 48px;
    }

    #top-bar .center p {
        font-size: 18px;
    }

    #cards-container {
        gap: 40px;
        margin-top: 200px;
    }

    .full-card {
        width: 380px;
        height: 480px;
    }

    .nft-card {
        width: 300px;
        height: 400px;
    }

    .card-bg {
        width: 300px;
        height: 400px;
    }

    .card-image img {
        width: 295px;
        height: 295px;
    }

    .bid-btn {
        width: 300px;
        padding: 20px 70px;
        font-size: 18px;
    }
}