/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Main Content Styles */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Table Styles */
.table-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    margin-bottom: 2rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #444;
}

tr:hover {
    background-color: #f8f9fa;
}

/* Link Styles */
a {
    color: #6e8efb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #a777e3;
}

/* Rating Stars */
.stars {
    color: #ffd700;
    letter-spacing: 2px;
}

/* Feature Cards */
.features {
    margin-top: 3rem;
}

.features h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #444;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: #6e8efb;
    margin-bottom: 1rem;
}

.feature-card ul {
    list-style-position: inside;
    color: #666;
}

.feature-card li {
    margin-bottom: 0.5rem;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    margin-top: 3rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    header p {
        font-size: 1rem;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    th, td {
        padding: 0.75rem;
    }
}

/* Table Column Widths */
th:nth-child(1), td:nth-child(1) { width: 12%; }
th:nth-child(2), td:nth-child(2) { width: 25%; }
th:nth-child(3), td:nth-child(3) { width: 12%; }
th:nth-child(4), td:nth-child(4) { width: 15%; }
th:nth-child(5), td:nth-child(5) { width: 10%; }
th:nth-child(6), td:nth-child(6) { width: 16%; }
th:nth-child(7), td:nth-child(7) { width: 10%; }

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .table-container {
        font-size: 0.85rem;
    }
    
    td a {
        padding: 0.15rem 0.3rem;
    }
}

@media (max-width: 768px) {
    .table-container {
        font-size: 0.75rem;
    }
    
    .stars {
        letter-spacing: 1px;
    }
    
    td a {
        padding: 0.1rem 0.2rem;
    }
} 