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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #5252DE 0%, #1BBF7C 100%);
    color: #1A1A1A;
    line-height: 1.6;
    padding: 40px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
}

.header {
    background: linear-gradient(135deg, #FF4738 0%, #FCA634 100%);
    padding: 60px 40px;
    text-align: center;
    color: white;
}

.header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.header .subtitle {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.95;
}

.content {
    padding: 60px 40px;
}

.section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #5252DE;
    margin-bottom: 20px;
    border-left: 6px solid #FCA634;
    padding-left: 20px;
}

.section-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #FF4738;
    margin-top: 30px;
    margin-bottom: 15px;
}

.parag-subtitle {
    margin-bottom: 15px;
}

.bullet-list {
    list-style: none;
    margin-left: 20px;
}

.bullet-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #3C3C3C;
}

.bullet-list li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: #1BBF7C;
    font-size: 20px;
}

.highlight-box {
    background: linear-gradient(135deg, #67D1A6 0%, #1BBF7C 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 20px 0;
}

.highlight-box strong {
    font-size: 24px;
    /* display: block; */
    margin-bottom: 10px;
}

.info-box {
    background: #E8E8E8;
    border-left: 6px solid #5252DE;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.warning-box {
    background: #FCA634;
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    font-weight: 600;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

table th {
    background: #5252DE;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

table td {
    padding: 15px;
    border-bottom: 1px solid #D8D8D8;
}

table tr:hover {
    background: #E8E8E8;
}

.star-points {
    font-size: 24px;
    color: #FCA634;
}

.cta-box {
    background: linear-gradient(135deg, #FF4738 0%, #FCA634 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-box a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.simulator-box {
    background: #F5F5F5;
    padding: 40px;
    border-radius: 15px;
    margin: 20px 0;
}

.simulator-input-group {
    margin-bottom: 25px;
}

.simulator-input-group label {
    display: block;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 8px;
    font-size: 16px;
}

.simulator-input-group input {
    width: 100%;
    padding: 12px 15px;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    border: 2px solid #C7C7C7;
    border-radius: 8px;
    transition: border-color 0.3s;
}

.simulator-input-group input:focus {
    outline: none;
    border-color: #5252DE;
}

.input-hint {
    display: block;
    font-size: 13px;
    color: #707070;
    margin-top: 5px;
}

.calculate-btn {
    width: 100%;
    background: linear-gradient(135deg, #1BBF7C 0%, #67D1A6 100%);
    color: white;
    border: none;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(27, 191, 124, 0.3);
}

.calculate-btn:active {
    transform: translateY(0);
}

.simulator-results {
    margin-top: 30px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.simulator-results h3 {
    color: #5252DE;
    margin-bottom: 20px;
    font-size: 24px;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.result-item {
    background: #E8E8E8;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.result-item.highlight {
    background: linear-gradient(135deg, #67D1A6 0%, #1BBF7C 100%);
    color: white;
}

.result-item.total {
    background: linear-gradient(135deg, #FF4738 0%, #FCA634 100%);
    color: white;
    grid-column: 1 / -1;
}

.result-label {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.result-value {
    font-size: 32px;
    font-weight: 700;
}

.usage-example {
    margin-top: 25px;
    padding: 20px;
    background: #FFF9E6;
    border-left: 4px solid #FCA634;
    border-radius: 8px;
}

.usage-example h4 {
    color: #1A1A1A;
    margin-bottom: 15px;
}

.usage-item {
    padding: 12px;
    background: white;
    margin-bottom: 10px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.usage-item:last-child {
    margin-bottom: 0;
}

.usage-amount {
    font-weight: 700;
    color: #1BBF7C;
}

.footer {
    background: #1A1A1A;
    color: white;
    padding: 30px 40px;
    text-align: center;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 32px;
    }
    
    .content {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
}
