@import "./reset.css";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: Montserrat;
    background-image: url('../images/bg.png');
    background-size: cover;
    background-position: center;
    height: 1000px;
    overflow-x: hidden;
}

.container {
    max-width: 1382px;
    margin: 0 auto;
}

::-webkit-scrollbar {
    width: 15px;
    background: linear-gradient(60deg, #79abf7, #bbd6fa);
    border-radius: 15px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, rgba(0, 102, 255, 0.5), rgba(0, 140, 255, 0.5));
    border-radius: 15px;
    cursor: n-resize;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #0059ff, #0084ff);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 67px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 17px;
    display: none;
}

.social-icons.show {
    display: flex;
}

.frame-ip {
    width: 276px;
    height: 149px;
    flex-shrink: 0;
    border-radius: 0px 0px 30px 30px;
    background: #D4EAFF;
    cursor: pointer;
}

.header-nav a {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
}

.main-header {
    margin-left: 25px;
}

.fa-discord, .fa-youtube, .fa-telegram, .fa-vk {
    font-size: 40px;
    transition: transform 0.3s ease;
}

.fa-discord { color: #7289DA; }
.fa-youtube { color: red; }
.fa-telegram { color: #0088cc; }
.fa-vk { color: #0077FF; }

.fa-discord:hover,
.fa-youtube:hover,
.fa-telegram:hover,
.fa-vk:hover {
    transform: scale(1.2);
}

.main-header,
.rules-header,
.opis-header,
.social-header {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

.main-header:hover,
.rules-header:hover,
.opis-header:hover,
.social-header:hover {
    color: #0099ff;
    transform: scale(1.1);
}

.main-header::after,
.rules-header::after,
.opis-header::after,
.social-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 3px;
    background: #0099ff;
    transition: width 0.3s ease;
}

.main-header:hover::after,
.rules-header:hover::after,
.opis-header:hover::after,
.social-header:hover::after {
    width: 100%;
}

.logo-image {
    height: 140px;
    min-width: 140px;
    object-fit: contain;
}

.frame-ip {
    width: 276px;
    height: 149px;
    flex-shrink: 0;
    border-radius: 0px 0px 30px 30px;
    background: #D4EAFF;
}

.title-ip {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7C7C7C !important;
    font-size: 24px;
    font-weight: 600;
    padding-top: 45px;
    cursor: default;
}

.subtitle-ip {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px !important;
    font-weight: 750 !important;
}

.nav-button, .burger-close {
    display: none;
}

@media (max-width: 1400px) {
    .opis-header, .frame-ip {
        display: none;
    }
    .nav-button {
        display: block;
    }
}

@media (max-width: 750px) {
    .logo-image {
        display: none;
    }
    .header-nav {
        padding-top: 30px;
        padding-bottom: 10px;
        margin-left: -80px;
    }
}

.image-main {
    padding-top: 30px;
    cursor: pointer;
}

.notification {
    position: fixed;
    bottom: 20px;
    right: 38%;
    background-color: #58d174;
    color: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.cards {
    position: relative;
    margin-top: 40px;
    margin-bottom: 10px;
    z-index: 3;
}

.cards-row {
    display: flex;
    text-align: center;
    column-gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.cards-button {
    border-radius: 20px;
    background: linear-gradient(90deg, #0562B7 0%, #0097F3 100%);
    width: 250px;
    height: 80px;
    color: #FFF;
    font-size: 23px;
    font-weight: 700;
}

.cards-button-priv {
    border-radius: 20px;
    background: linear-gradient(90deg, #0562B7 0%, #0097F3 100%);
    width: 250px;
    height: 80px;
    color: #FFF;
    font-size: 23px;
    font-weight: 700;
    box-shadow: 0px 0px 35.2px 5px #0093EF;
}

.cards-card {
    display: inline-block;
    text-align: center;
    transition: transform 0.3s ease;
}

.cards-card:hover {
    transform: scale(1.05);
}

.category-title {
    color: black;
    font-size: 45px;
    font-weight: 800;
}

.cards-category {
    position: relative;
    margin-top: 40px;
    margin-bottom: 10px;
    z-index: 3;
}

.cards-row-category {
    display: flex;
    text-align: center;
    column-gap: 70px;
    flex-wrap: wrap;
    justify-content: center;
}

.cards-button-category {
    border-radius: 10px;
    background: linear-gradient(90deg, #157ee0 0%, #0097F3 100%);
    width: 110px;
    height: 40px;
    color: #FFF;
    font-size: 15px;
    font-weight: 700;
    display: block;
    position: relative;
    left: 140px;
    bottom: 45px;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.cards-button-category:hover {
    transform: scale(1.1);
}

.cards-card-category {
    padding-bottom: 30px;
    transition: transform 0.3s ease;
}

.cards-card-category-img {
    height: 250px;
    border-radius: 30px;
}

.cards-card-category-title {
    display: flex;
    padding-top: 10px;
    color: rgb(71, 71, 71);
    font-size: 25px;
    font-weight: 700;
}

.cards-card-category-cost {
    display: flex;
    padding-top: 10px;
    color: black;
    font-size: 27px;
    font-weight: 700;
}

.cards-card-category:hover {
    transform: scale(1.1);
}

.footer {
    margin-top: 10px;
    width: 100%;
    background: linear-gradient(92deg, #134660 0%, #1F5E7D 100%);
    color: white;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 4.17vw 4.17vw 0 0;
}

.footer-row {
    display: flex;
    column-gap: 100px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: 120px;
}

.footer-sector {
    flex: 1 1 0;
    margin-bottom: 30px;
    text-align: left;
    cursor: default;
}

.footer-1 {
    color: #FFF;
    font-size: 25px;
    font-weight: 600;
    text-align: left;
}

.footer-2 {
    color: #B7B7B7;
    font-size: 25px;
    font-weight: 400;
    text-align: left;
}

.buy-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
}

.buy-popup-content-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.buy-popup-content {
    background: linear-gradient(145deg, #ffffff, #f5f7fa);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.popup-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 10px 0;
    line-height: 1;
}

.popup-icon {
    font-size: 28px;
    color: #0097F3;
    transform: translateY(-15px);
}

.buy-popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 0;
    min-height: 70px;
}

.input-icon {
    position: absolute;
    left: 5px;
    top: 42px;
    font-size: 18px;
    color: #0097F3;
    width: 20px;
    text-align: center;
}


.input-wrapper {
    width: 100%;
    margin-left: 35px;
}

.input-wrapper label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-weight: 500;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5ea;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    border-color: #0097F3;
    box-shadow: 0 0 0 3px rgba(0, 151, 243, 0.1);
}

.price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0;
    padding: 15px;
    background: rgba(0, 151, 243, 0.1);
    border-radius: 10px;
}

.price-label {
    color: #666;
    font-weight: 500;
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    color: #0097F3;
}

.buy-popup-button {
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    background: linear-gradient(90deg, #0562B7 0%, #0097F3 100%);
    border-radius: 12px;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
}

.buy-popup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(5, 98, 183, 0.2);
    background: linear-gradient(90deg, #004a93 0%, #0073bf 100%);
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #e1e5ea;
}

.payment-icon {
    height: 35px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.payment-icon:hover {
    transform: scale(1.1);
}

.buy-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.buy-popup-close:hover {
    color: #0097F3;
}

.duration-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 0 15px;
}

.duration-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 12px;
    border-radius: 10px;
    background: #f5f7fa;
    color: #666;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.duration-btn i {
    font-size: 20px;
    margin-bottom: 5px;
}

.cards-card {
    margin: 10px;
    display: inline-block;
}

.duration-btn .duration-price {
    font-weight: 700;
    color: #0097F3;
}

.duration-btn:hover {
    background: #e8f0fe;
    transform: translateY(-2px);
}

.duration-btn.active {
    background: #e8f0fe;
    border-color: #0097F3;
    color: #0097F3;
}
