/* General styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #2a4d69;
}

/* Hero section */
.hero {
    background-size: cover;
    background-position: center;
    min-height: 40vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #655923 0%, #8b7a3d 25%, #b89f5a 50%, #d4c17a 75%, #ecf384 100%);
    opacity: 0.95;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 0.5;
    }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero .btn {
    border-radius: 30px;
    transition: all 0.3s ease;
}

.hero .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Card styles for domain icons */
.card {
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Section headings */
.section-title {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    color: #2a4d69;
}

/* Domain specific colors (for future use) */
.pi-color { color: #4caf50; }
.bi-color { color: #7cb342; }
.ci-color { color: #3f51b5; }
.hi-color { color: #ff9800; }

/* Table styles for updates page */
table.dataTable thead th {
    background-color: #2a8c87;
    color: #fff;
}

/* Table column widths */
#updates-table th:nth-child(1),
#updates-table td:nth-child(1) {
    width: 8%;
    min-width: 60px;
}

#updates-table th:nth-child(2),
#updates-table td:nth-child(2) {
    width: 45%;
    min-width: 200px;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

#updates-table th:nth-child(3),
#updates-table td:nth-child(3) {
    width: 12%;
    min-width: 100px;
}

#updates-table th:nth-child(4),
#updates-table td:nth-child(4) {
    width: 20%;
    min-width: 120px;
}

#updates-table th:nth-child(5),
#updates-table td:nth-child(5) {
    width: 15%;
    min-width: 80px;
}

/* Footer */
footer {
    font-size: 0.85rem;
}