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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c3e50;
}

.header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    font-weight: 300;
}

.section {
    background: white;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid #e9ecef;
}

.section h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 20px;
}

.section p {
    color: #555;
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    margin-top: 20px;
}

.features-list li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #f1f3f4;
}

.features-list li:last-child {
    border-bottom: none;
}

.cases {
    list-style: none;
}

.cases li {
    padding: 20px 0;
    border-bottom: 1px solid #f1f3f4;
}

.cases li:last-child {
    border-bottom: none;
}

.cases li strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.cases li span {
    color: #666;
    font-size: 0.95rem;
}

.stats-widget {
    position: relative;
    width: 100%;
}

.stats-container {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 24px;
    border: 1px solid #e9ecef;
}

.stats-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e9ecef;
}

.stats-header h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin: 0 0 8px 0;
}

.username {
    color: #0088cc;
    font-weight: 500;
    font-size: 1.1rem;
}

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

.stat-item {
    background: white;
    padding: 16px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 400;
}

.stats-additional {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #e9ecef;
}

.additional-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.additional-stat .label {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 4px;
}

.additional-stat .value {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c3e50;
}

.error-message {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.error-message p {
    color: #c53030;
    margin: 0;
}

/* Info container styles (similar to stats) */
.info-container {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 24px;
    border: 1px solid #e9ecef;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.info-item {
    background: white;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 8px;
}

.info-value {
    font-size: 1rem;
    color: #2c3e50;
    line-height: 1.5;
}

/* Price container styles (similar to stats) */
.price-container {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 24px;
    border: 1px solid #e9ecef;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.price-item {
    background: white;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.price-type {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
}

.skeleton-loader {
    min-width: 100%;
    height: 500px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

@keyframes loading {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.contact-section {
    text-align: center;
}

.contact-section h2 {
    border: none;
    margin-bottom: 15px;
}

.contact-section p {
    margin-bottom: 30px;
    color: #666;
}

.contact-btn {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 400;
    transition: background-color 0.2s ease;
}

.contact-btn:hover {
    background: #34495e;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }

    .header h1 {
        font-size: 2rem;
    }

    .header{
        margin-bottom: 20px;
    }

    .section {
        padding: 30px 25px;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-section {
        padding: 40px 25px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 12px;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    .stat-value {
        font-size: 1.3rem;
    }
    
    .stats-additional {
        flex-direction: column;
        gap: 12px;
    }
    
    .additional-stat {
        flex-direction: row;
        justify-content: space-between;
        min-width: auto;
        width: 100%;
    }

    .skeleton-loader {
        width: 100%;
        max-width: 350px;
        height: 250px;
    }
    
    .price-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px;
    }
    
    .price-item {
        padding: 16px;
    }
    
    .price-value {
        font-size: 1.5rem;
    }
    
    .info-item {
        padding: 16px;
    }
    
    .info-container, .price-container {
        padding: 20px;
    }
}

