* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px 10px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

h1 {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2em;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    text-align: center;
    color: #718096;
    margin-bottom: 30px;
    font-size: 1em;
}


.section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.5em;
    color: #2d3748;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #667eea;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon {
    font-size: 1.2em;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 600px;
}

thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

th {
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95em;
}

td {
    padding: 15px 12px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9em;
}

tbody tr {
    transition: background-color 0.3s ease;
}

tbody tr:hover {
    background-color: #f7fafc;
}

.property-name {
    font-family: 'Courier New', monospace;
    color: #667eea;
    font-weight: 600;
    font-size: 0.95em;
}

.type {
    color: #e53e3e;
    font-family: 'Courier New', monospace;
    font-size: 0.85em;
    background: #fff5f5;
    padding: 2px 6px;
    border-radius: 4px;
}

.description {
    color: #4a5568;
    line-height: 1.5;
}

.example {
    font-family: 'Courier New', monospace;
    background: #f7fafc;
    padding: 2px 6px;
    border-radius: 4px;
    color: #2d3748;
    font-size: 0.85em;
}

.modifier-badge {
    display: inline-block;
    background: #e6fffa;
    color: #234e52;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 600;
    margin-right: 5px;
}

.navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            gap: 20px;
        }

        .nav-button {
            flex: 1;
            padding: 15px 25px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            text-align: center;
            font-weight: 600;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .nav-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
        }
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
        border-radius: 15px;
    }

    h1 {
        font-size: 1.5em;
    }

    .subtitle {
        font-size: 0.9em;
    }

    .section-title {
        font-size: 1.2em;
    }

    th,
    td {
        padding: 10px 8px;
        font-size: 0.85em;
    }

    .property-name {
        font-size: 0.85em;
    }

    table {
        min-width: 550px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px 5px;
    }

    .container {
        padding: 15px 10px;
    }

    h1 {
        font-size: 1.3em;
    }

    .section-title {
        font-size: 1.1em;
    }
}