@import "./reset.css";
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates: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');

body {
    font-family: Unbounded;
    height: 1700px;
    background-image: url('../images/bg.png');
    background-position: center 200px;
    background-size: cover;
    background-repeat: no-repeat;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}


.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    backdrop-filter: blur(15px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    width: 100%;
    max-width: 600px;
    max-height: 85vh;
    border-radius: 25px;
    box-shadow: 0 25px 80px rgba(76, 175, 80, 0.4);
    overflow: hidden;
    animation: modalSlideIn 0.4s ease-out;
    display: flex;
    flex-direction: column;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    padding: 20px 30px;
    text-align: center;
    position: relative;
    flex-shrink: 0;
}

.product-icon {
    margin-bottom: 10px;
}

.product-icon i {
    font-size: 40px;
    color: white;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.product-name {
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.product-server {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.close-modal:hover {
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.3);
}

.modal-body {
    display: block;
    flex: 1;
    min-height: 0;
}

.product-details {
    padding: 20px 25px;
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    max-height: 180px;
    overflow-y: auto;
}

.details-section {
    margin-bottom: 15px;
}

.details-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 8px;
}

.details-title i {
    color: #4CAF50;
    font-size: 16px;
}

.commands-list, .features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.command-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 500;
    font-family: 'Courier New', monospace;
}

.feature-tag {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 500;
}

.form-section {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title::before {
    content: '';
    width: 3px;
    height: 18px;
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    border-radius: 2px;
}

.form-inputs {
    flex: 1;
}

.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #4CAF50;
    font-size: 16px;
    z-index: 1;
}

#purchaseForm input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 14px;
    font-family: Unbounded;
    transition: all 0.3s ease;
    background: #fff;
    box-sizing: border-box;
}

#purchaseForm input:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.3);
    outline: none;
}

#purchaseForm input::placeholder {
    color: #a0a0a0;
    font-weight: 400;
}

.purchase-button {
    width: 100%;
    height: 55px;
    border-radius: 15px;
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 50%, #66BB6A 100%);
    box-shadow: 0px 8px 25px rgba(76, 175, 80, 0.4);
    color: white;
    font-size: 18px;
    font-weight: 700;
    font-family: Unbounded;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    margin-top: 15px;
}

.purchase-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.purchase-button:hover::before {
    left: 100%;
}

.purchase-button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 12px 35px rgba(31, 242, 49, 0.7);
}

.purchase-button:active {
    transform: translateY(-1px);
}

::-webkit-scrollbar {
    width: 8px;
    background: linear-gradient(60deg, #7df779, #c0fabb);
    border-radius: 8px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, rgba(51, 255, 0, 0.5), rgba(0, 255, 21, 0.5));
    border-radius: 8px;
    cursor: n-resize;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #15ff00, #1eff00);
}

/* Хедер */

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 13px;
}

.header-links {
    display: flex;
    align-items: center;
    gap: 50px;
}

.header-nav a {
    color: #B6B6B6;
    font-size: 24px;
    font-weight: 360;
}

.nav-link {
    display: flex;
    align-items: center;
    color: #B6B6B6;
    font-size: 24px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #4dd86b;
    transform: translateY(-2px);
}

.nav-link:hover .icon-header {
    transform: rotate(10deg);
}

.logo-header {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.logo-link:hover .logo-header {
    transform: scale(1.1);
}

.discord-header {
    transition: transform 0.3s ease;
}

.discord-link:hover .discord-header {
    transform: scale(1.1) rotate(10deg);
}

.icon-header {
    position: relative;
    margin-top: 2px;
    padding-right: 5px;
    transition: transform 0.3s ease;
}

.header-line {
    margin-top: 12px;
    width: 100%;
    height: 3px;
    background: #D9D9D9;
    box-shadow: 0px 5px 22.8px 3px rgba(0, 0, 0, 0.27);
}

.main-title-reality {
    text-shadow: 0px 0px 58.1px rgba(51, 143, 48, 0.8);
    font-size: var(--Number, 55px);
    font-weight: 700;
    background: linear-gradient(91deg, #56cc56 0.12%, #69db69 99.84%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-top: 120px;
}

.main-title {
    margin-top: -62.5px;
    font-size: 50px;
    font-weight: 400;
    background: linear-gradient(91deg, #292929 0.12%, #666 99.84%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 39px;
    cursor: default;
}

.main-title .line1 {
    text-align: left;
    margin-left: 223px;
}

.main-img {
    position: absolute;
    right: 5%;
    top: 14%;
    max-width: 100%;
    width: 35%;
    height: auto;
    z-index: -1;
}

.main-subtitle {
    font-size: 25px;
    font-weight: 400;
    background: linear-gradient(271deg, #808080 0.07%, #696969 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: default;
}

.main-button {
    width: 220px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 15px;
    background: linear-gradient(94deg, #4ECF43 0%, #47F552 50.5%, #4FC85D 100%);
    box-shadow: 0px 0px 58.1px 0px rgba(56, 242, 31, 0.6);
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.50);
    font-size: 32px;
    font-weight: 700;
    color: white;
    display: block;
    margin-top: 0;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.main-button:hover {
    transform: scale(1.1);
}

.main-card-title {
    font-family: "Montserrat Alternates";
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: linear-gradient(271deg, #3E3E3E 32.83%, #505050 99.78%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 170px;
    display: flex;
}

/* Карточки */

.category-title {
    position: relative;
    display: flex;
    padding-top: 170px;
    font-family: "Montserrat Alternates";
    font-size: 64px;
    font-weight: 700;
    background: linear-gradient(271deg, #3E3E3E 32.83%, #505050 99.78%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: default;
}

.cards-category {
    position: relative;
    margin-top: 40px;
    margin-bottom: 10px;
    z-index: 3;
}

.cards-row-category {
    display: flex;
    text-align: center;
    column-gap: 52px;
    flex-wrap: wrap;
    justify-content: center;
}

.cards-card-category {
    position: relative;
    width: 430px;
    height: 420px;
    flex-shrink: 0;
    border-radius: 25px;
    border: 2px solid #D9D9D9;
    background: #FFF;
    margin-bottom: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
}

.cards-card-category-img {
    width: 155px;
    height: 155px;
    margin-top: 10px;
}

.cards-card-category-title {
    color: #000;
    font-size: 36px;
    font-weight: 500;
    text-align: center;
    margin: 15px 0;
    cursor: default;
}

.cards-card-category-cost {
    color: #000;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin: 10px 0;
    cursor: default;
    word-break: break-word;
}

.cards-button-category {
    width: 200px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(94deg, #40ff39 0%, #35d815 50.5%, #32ff54 100%);
    box-shadow: 0px 0px 58.1px 0px rgba(31, 242, 42, 0.6);
    font-size: 28px;
    font-weight: 700;
    color: white;
    transition: transform 0.3s ease;
    cursor: pointer;
    border: none;
    margin-top: 10px;
}

.cards-button-category:hover {
    transform: scale(1.05);
}

.main-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 39px;
}

.main-button {
    margin-top: 0;
}

/* Круг онлайна */

.online-circle {
    min-width: 45px;
    min-height: 45px;
    width: 45px;
    height: 45px;
    z-index: 10;
    aspect-ratio: 1;
    padding: 0;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 21px;
    font-weight: 700;
    position: relative;
}

.online-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #22c55e;
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    70% {
        transform: scale(2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.online-text {
    color: #666;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    cursor: default;
}

/* Режимы игры */

.game-modes {
    padding: 40px 0;
}

.modes-selector {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.mode-btn {
    padding: 15px 30px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #d9d9d9;
    color: #666;
    font-size: 18px;
    font-weight: 600;
    font-family: Unbounded;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.mode-btn:hover {
    transform: translateY(-2px);
    border-color: #3ef53e;
    color: #3ef53e;
}

.mode-btn.active {
    background: linear-gradient(135deg, #44f53e 0%, #0aef0a 100%);
    border-color: #3ef53e;
    color: white;
    box-shadow: 0 10px 30px rgba(31, 242, 31, 0.4);
}

.product-categories {
    padding: 20px 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.category-tab {
    padding: 12px 25px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #e9ecef;
    color: #636e72;
    font-size: 16px;
    font-weight: 500;
    font-family: Unbounded;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-tab:hover {
    border-color: #3ef53e;
    color: #3ef53e;
}

.category-tab.active {
    background: linear-gradient(135deg, #44f53e 0%, #0aef0a 100%);
    border-color: #3ef53e;
    color: white;
    box-shadow: 0 5px 20px rgba(31, 242, 31, 0.3);
}

/* Футер */

.footer {
    margin-top: 10px;
    width: 100%;
    background: linear-gradient(92deg, #134660 0%, #1F5E7D 100%);
    color: white;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #C6C6C6;
    background: linear-gradient(180deg, #FFF 0%, #d1ffcf 100%);
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-row {
    display: flex;
    column-gap: 100px;
    flex-wrap: wrap;
    margin-left: 100px;
}

.footer-sector {
    flex: 1 1 0;
    text-align: center;
    cursor: default;
}

.footer-title {
    position: relative;
    font-size: 16px;
    font-weight: 410;
    background: linear-gradient(91deg, #292929 0.12%, #5a5a5a 99.84%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.copyright-text {
    font-size: 14px;
    font-weight: 450;
    background: linear-gradient(91deg, #161616 0.12%, #3f3f3f 99.84%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .category-title {
        font-size: 54px;
        text-align: center;
        justify-content: center;
        padding-top: 150px;
    }

    .header-links {
        display: none;
    }

    .main-title-reality {
        font-size: 45px;
    }

    .main-title {
        font-size: 40px;
    }

    .main-img {
        width: 70%;
    }

    .cards-row-category {
        gap: 30px;
    }

    .modes-selector {
        flex-wrap: wrap;
        gap: 15px;
    }

    .mode-btn {
        font-size: 16px;
        padding: 12px 20px;
    }

    .category-tabs {
        flex-wrap: wrap;
        gap: 15px;
    }

    .modal-body {
        flex-direction: column;
    }

    .product-details {
        border-right: none;
        border-bottom: 2px solid #e9ecef;
        max-height: 200px;
    }

    .form-section {
        min-width: auto;
    }
}

.burger-menu {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 100;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background: #B6B6B6;
    position: absolute;
    transition: all 0.3s ease;
}

.burger-menu span:nth-child(1) { top: 0; }
.burger-menu span:nth-child(2) { top: 9px; }
.burger-menu span:nth-child(3) { top: 18px; }

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, #FFF 0%, #acffac 100%);
    padding-top: 100px;
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-menu .nav-link {
    font-size: 28px;
}

@media (max-width: 768px) {
    .cards-card-category {
        width: 100%;
        max-width: 350px;
        height: 400px;
        padding: 15px;
    }

    .cards-card-category-title {
        font-size: 28px;
        margin: 10px 0;
    }

    .cards-card-category-cost {
        font-size: 24px;
        margin: 8px 0;
    }

    .cards-button-category {
        width: 180px;
        height: 55px;
        font-size: 24px;
        margin-top: 8px;
    }

    .header-nav {
        display: flex;
        align-items: center;
        padding: 15px 20px;
    }

    .logo-link {
        order: 1;
        margin-right: 20px;
    }

    .discord-link {
        order: 2;
        margin-right: auto;
    }

    .burger-menu {
        display: block;
        order: 3;
    }

    .header-links {
        display: none;
    }

    .mobile-menu {
        display: block;
        right: 0;
        left: auto;
    }

    .discord-header {
        width: 60px;
        height: 60px;
    }

    .container {
        padding: 0 20px;
    }

    .close-modal {
        right: 15px;
        top: 15px;
        font-size: 24px;
    }

    .online-circle {
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        font-size: 20px;
    }

    .main {
        text-align: center;
    }

    .main-title-reality {
        padding-top: 60px;
        text-align: center;
        font-size: 35px;
    }

    .main-title {
        margin: 0;
        padding: 20px 0;
        text-align: center;
        font-size: 30px;
    }

    .main-title .line1 {
        text-align: left;
        margin-left: 0.1px;
    }

    .main-img {
        position: relative;
        width: 100%;
        height: auto;
        margin-top: 30px;
        opacity: 0.3;
    }

    .main-subtitle {
        font-size: 18px;
    }

    .main-actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .main-button {
        margin: 0 auto;
        width: 180px;
        height: 60px;
        font-size: 28px;
    }

    .online-text {
        font-size: 18px;
    }

    .category-title {
        font-size: 48px;
        padding-top: 120px;
        text-align: center;
        justify-content: center;
        width: 100%;
    }

    .footer-sector {
        text-align: left;
    }

    .footer-row {
        margin-left: 20px;
    }

    .modal-content {
        width: 95%;
        max-width: 800px;
    }

    .modal-header {
        padding: 15px 20px;
    }

    .modal-title {
        font-size: 20px;
    }

    .product-name {
        font-size: 18px;
    }

    .form-section, .product-details {
        padding: 15px 20px;
    }

    .purchase-button {
        font-size: 16px;
        height: 50px;
    }

    .modes-selector {
        justify-content: center;
        gap: 10px;
    }

    .mode-btn {
        padding: 10px 15px;
        font-size: 14px;
    }

    .category-tabs {
        justify-content: center;
        gap: 10px;
    }

    .category-tab {
        padding: 10px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .close-modal {
        right: 10px;
        top: 10px;
        font-size: 20px;
        width: 25px;
        height: 25px;
    }

    .online-circle {
        min-width: 35px;
        height: 35px;
        padding: 0 10px;
        font-size: 18px;
    }

    .main-title-reality {
        font-size: 30px;
    }

    .main-title {
        font-size: 25px;
    }

    .main-subtitle {
        font-size: 16px;
    }

    .main-actions {
        gap: 15px;
    }

    .main-button {
        width: 160px;
        height: 55px;
        font-size: 24px;
    }

    .online-text {
        font-size: 16px;
    }

    .category-title {
        font-size: 36px;
        padding-top: 100px;
        text-align: center;
        justify-content: center;
        width: 100%;
    }

    .cards-card-category {
        width: 100%;
        max-width: 320px;
        height: 380px;
        padding: 12px;
    }

    .cards-card-category-title {
        font-size: 24px;
        margin: 8px 0;
    }

    .cards-card-category-cost {
        font-size: 20px;
        margin: 6px 0;
    }

    .cards-button-category {
        width: 160px;
        height: 50px;
        font-size: 20px;
        margin-top: 6px;
    }

    .modal-content {
        width: 98%;
        max-width: 400px;
        margin: 2% auto;
    }

    .modal-header {
        padding: 15px 18px;
    }

    .modal-title {
        font-size: 18px;
    }

    .product-name {
        font-size: 16px;
    }

    .product-info {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 10px 15px;
    }

    .modal-body {
        flex-direction: column;
    }

    .product-details {
        border-right: none;
        border-bottom: 2px solid #e9ecef;
        padding: 15px 18px;
        max-height: 150px;
    }

    .form-section {
        padding: 15px 18px;
        min-width: auto;
    }

    #purchaseForm input {
        font-size: 13px;
        padding: 12px 12px 12px 40px;
    }

    .input-group i {
        left: 12px;
        font-size: 14px;
    }

    .purchase-button {
        font-size: 15px;
        height: 48px;
    }

    .modes-selector {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .mode-btn {
        width: 200px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 16px;
    }

    .category-tabs {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .category-tab {
        width: 150px;
        justify-content: center;
        padding: 10px 15px;
        font-size: 14px;
    }

    .product-icon i {
        font-size: 32px;
    }

    .details-title {
        font-size: 14px;
    }

    .details-title i {
        font-size: 14px;
    }

    .command-tag, .feature-tag {
        font-size: 10px;
        padding: 3px 6px;
    }

    .section-title {
        font-size: 16px;
    }

    .section-title::before {
        width: 2px;
        height: 16px;
    }
}

.coin-selector {
    margin-top: 10px;
}

.coin-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.coin-option {
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background: white;
}

.coin-option:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.coin-option.active {
    border-color: #4CAF50;
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: white;
}

.coin-amount {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.coin-price {
    font-weight: 700;
    font-size: 16px;
}

.quantity-selector {
    margin-top: 10px;
}

.quantity-selector label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d3436;
}

.quantity-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: 2px solid #4CAF50;
    background: white;
    color: #4CAF50;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #4CAF50;
    color: white;
}

.quantity-input {
    width: 120px;
    height: 35px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    font-family: Unbounded;
}

.quantity-input:focus {
    border-color: #4CAF50;
    outline: none;
}

.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1001;
    backdrop-filter: blur(15px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.success-modal.show {
    display: flex;
}

.success-modal-content {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 25px;
    box-shadow: 0 25px 80px rgba(76, 175, 80, 0.4);
    overflow: hidden;
    animation: successSlideIn 0.5s ease-out;
    text-align: center;
}

@keyframes successSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.success-header {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    padding: 30px;
    position: relative;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-icon i {
    font-size: 40px;
    color: white;
}

.success-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.success-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.success-body {
    padding: 30px;
}

.success-message {
    font-size: 18px;
    color: #2d3436;
    line-height: 1.6;
    margin-bottom: 25px;
}

.success-details {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    border-left: 4px solid #4CAF50;
}

.success-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.success-detail-item:last-child {
    margin-bottom: 0;
}

.success-detail-label {
    color: #636e72;
    font-weight: 500;
}

.success-detail-value {
    color: #2d3436;
    font-weight: 600;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.success-btn {
    padding: 12px 25px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: Unbounded;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.success-btn-primary {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

.success-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.success-btn-secondary {
    background: #e9ecef;
    color: #636e72;
    border: 2px solid #dee2e6;
}

.success-btn-secondary:hover {
    background: #dee2e6;
    transform: translateY(-1px);
}

.close-success-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.close-success-modal:hover {
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 480px) {
    .success-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .success-header {
        padding: 25px 20px;
    }
    
    .success-body {
        padding: 25px 20px;
    }
    
    .success-title {
        font-size: 24px;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .success-btn {
        width: 100%;
        justify-content: center;
    }
}
