* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #f4f6fb;
    color: #101828;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

.boost-page {
    padding: 50px 0 80px;
}

.boost-top {
    text-align: center;
    margin-bottom: 30px;
}

.boost-top h1 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 10px;
}

.boost-top p {
    font-size: 20px;
    color: #5a6475;
}

.game-tabs {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.game-tab {
    border: none;
    background: #e7ecf7;
    color: #12203a;
    padding: 14px 30px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
}

.game-tab.active {
    background: #1f57ff;
    color: #fff;
    box-shadow: 0 10px 25px rgba(31, 87, 255, 0.2);
}

.game-panel {
    display: none;
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 25px;
    box-shadow: 0 8px 30px rgba(10, 20, 40, 0.06);
}

.game-panel.active {
    display: block;
}

.panel-header {
    text-align: center;
    margin-bottom: 30px;
}

.panel-header h2 {
    font-size: 34px;
    margin-bottom: 8px;
}

.panel-header p {
    font-size: 18px;
    color: #5c6678;
}

.boost-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.rank-column {
    background: #f8faff;
    border: 1px solid #dde6f5;
    border-radius: 16px;
    padding: 25px 20px;
}

.rank-column h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.rank-image-box {
    width: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff, #eef3fc);
    border: 1px solid #e1e8f5;
}

.rank-image-box img {
    max-width: 170px;
    max-height: 170px;
    object-fit: contain;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #293347;
}

.form-group select,
.form-group input {
    width: 100%;
    height: 48px;
    border: 1px solid #cfd8ea;
    border-radius: 10px;
    padding: 0 14px;
    font-size: 16px;
    background: #fff;
    outline: none;
}

.form-group select:focus,
.form-group input:focus {
    border-color: #1f57ff;
}

.boost-bottom {
    text-align: center;
    margin-top: 30px;
}

.order-btn {
    display: inline-block;
    background: linear-gradient(135deg, #5865f2, #6f7cff);
    color: #fff;
    text-decoration: none;
    padding: 16px 42px;
    border-radius: 12px;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(88, 101, 242, 0.24);
    transition: 0.25s ease;
}

.order-btn:hover {
    transform: translateY(-2px);
}

.services-section {
    margin-top: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image-box {
    width: 100%;
    height: 180px;
    background: #f5f7fb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 10px;
}

.service-image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #151e33;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
}

.service-card ul li {
    font-size: 17px;
    margin-bottom: 10px;
    color: #3f4960;
    position: relative;
    padding-left: 18px;
}

.service-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #2f74ff;
    font-weight: 700;
}


/* Discord floating widget */

.discord-widget {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
}

.discord-widget-btn {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #5865f2;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(88, 101, 242, 0.35);
    transition: 0.25s ease;
}

.discord-widget-btn:hover {
    transform: translateY(-4px) scale(1.04);
}

.discord-widget-btn svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .boost-box {
        grid-template-columns: 1fr;
    }
    .panel-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .boost-top h1 {
        font-size: 34px;
    }
    .boost-top p {
        font-size: 17px;
    }
    .game-tab {
        width: 100%;
    }
    .rank-image-box {
        min-height: 170px;
    }
    .rank-image-box img {
        max-width: 130px;
        max-height: 130px;
    }
    .order-btn {
        width: 100%;
        padding: 16px 20px;
        font-size: 18px;
    }
    .discord-widget {
        right: 14px;
        bottom: 14px;
    }
    .discord-widget-btn {
        width: 56px;
        height: 56px;
    }
    .discord-widget-btn svg {
        width: 28px;
        height: 28px;
    }
}

.price-result {
    text-align: center;
    margin-top: 40px;
}

.calc-btn {
    padding: 12px 25px;
    background: #1f57ff;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.calc-btn:hover {
    background: #1743c7;
}

#priceOutput {
    margin-top: 15px;
    font-size: 24px;
}