/* Общие стили */
body {
    background-color: #000000;
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Стили для фонового изображения */
@media (min-width: 769px) {
    body {
        background-image: url('../img/BG.png');
        background-size: 72% auto;
        background-position: center -2%;
        background-repeat: no-repeat;
        position: relative;
        z-index: 1;
    }

    .container {
        position: relative;
        z-index: 2;
    }
}

@media (max-width: 768px) {
    body {
        background-image: url('../img/BG.png');
        background-size: 155% auto;
        background-position: center 2%;
        background-repeat: no-repeat;
    }
}

/* Стили для десктопа */
@media (min-width: 769px) {
    body {
        background-color: #000000;
    }

    .connect-wallet {
        font-size: 13px;
        padding: 4px 12px;
        border-radius: 25px;
    }

    .main-content {
        margin-top: 65vh;
        margin-bottom: 25vh;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 27px;
    }

    .launch-app {
        font-size: 28px;
        padding: 10px 36px;
    }
}

/* Стили для мобильных */
@media (max-width: 768px) {
    body {
        background-color: #000000;
    }

    .connect-wallet {
        font-size: 8px;
        padding: 4px 8px;
    }

    .main-content {
        margin-top: 35vh;
    }

    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .get-started {
        font-size: 24px;
        padding: 10px 40px;
    }

    .launch-app {
        font-size: 24px;
        padding: 10px 40px;
    }
}

/* Общие стили для хедера */
header {
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.connect-wallet {
    background: transparent;
    border: 2px solid #FFFFFF;
    border-radius: 25px;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
}

/* Общие стили для основного контента */
.main-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

h1 {
    margin-bottom: 5px;
    line-height: 1;
}

h2 {
    margin-bottom: 40px;
    line-height: 1;
}

.get-started {
    background: #B78628;
    border: none;
    border-radius: 25px;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
}

/* Popup */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.popup.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #000000;
    border-radius: 20px;
    padding: 30px;
    width: 350px;
    max-width: 90%;
    position: relative;
}

.close-button {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 20px;
    height: 20px;
    border: 1.5px solid #FFFFFF;
    border-radius: 50%;
    background: none;
    cursor: pointer;
}

.close-button::before,
.close-button::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 1.5px;
    background: #FFFFFF;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-button::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.popup h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Popup Logo */
.popup-logo {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.popup-logo img {
    width: 100px;
}

/* Login Options */
.login-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.email-input {
    display: flex;
    align-items: center;
    background: transparent;
    border: 2px solid #FFFFFF;
    border-radius: 25px;
    padding: 8px 15px;
    position: relative;
}

.input-icon {
    width: 18px;
    margin-right: 8px;
}

.email-input input {
    flex: 1;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 14px;
    padding: 8px;
    padding-right: 70px;
    text-align: left;
}

.email-input input::placeholder {
    color: #FFFFFF;
    text-align: left;
}

.submit-btn {
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 14px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.sms-option,
.phantom-option {
    display: flex;
    align-items: center;
    background: transparent;
    border: 2px solid #FFFFFF;
    border-radius: 25px;
    padding: 12px 15px;
    color: #FFFFFF;
    font-size: 14px;
    cursor: pointer;
    justify-content: flex-start;
}

.button-icon {
    width: 18px;
    margin-right: 8px;
}

.phantom-option {
    display: flex;
    align-items: center;
    padding-left: 20px; /* Такой же отступ как у SMS */
}

.phantom-option span:first-of-type {
    margin-left: 10px;
    margin-right: auto;
}

.phantom-option {
    justify-content: space-between;
}

.tais-label {
    background: #4A4A4A;
    padding: 4px 12px;
    border-radius: 15px;
    margin-left: auto; /* Прижимаем метку вправо */
    font-size: 12px;
}

/* Медиа запросы */
@media (max-width: 768px) {
    .connect-wallet {
        font-size: 12px;
        padding: 5px 10px;
    }

    .main-content {
        margin-top: 45vh;
    }

    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .get-started {
        font-size: 24px;
        padding: 10px 40px;
    }

    .popup h2 {
        font-size: 24px;
    }
}

/* Общие стили для кнопок с hover-эффектом */
.connect-wallet,
.launch-app {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.connect-wallet:hover,
.launch-app:hover {
    /* Сохраняем текущие стили для hover и добавляем плавный переход */
    transition: all 0.3s ease;
}

/* Обновляем класс для кнопки Launch App (раньше был .get-started) */
.launch-app {
    background: #B78628;
    border: none;
    border-radius: 25px;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Медиа запросы для .launch-app */
@media (min-width: 769px) {
    .launch-app {
        font-size: 28px;
        padding: 10px 36px;
    }
}

@media (max-width: 768px) {
    .launch-app {
        font-size: 24px;
        padding: 10px 40px;
    }
} 