/*
=======================================================
START: CSS Stylesheet
=======================================================
This file contains all the custom styles for the 
ZeroBreak strategy page.
*/

html {
    scroll-behavior: smooth;
}
body {
    background-color: #f8f9fa; /* Lighter, cleaner gray */
}
.gz-main-title-gradient {
    background: linear-gradient(to left, #c5931a, #f7d16e);
}
.gz-section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    font-weight: 800;
    color: #1a202c;
}
.gz-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(to left, #c5931a, #f7d16e);
}
.gz-zoomable-image {
    background-color: #edf2f7;
    border-radius: 1rem;
    border: 2px dashed #cbd5e0;
    transition: all 0.3s ease;
    cursor: pointer;
    object-fit: cover;
    width: 100%;
}
.gz-zoomable-image:hover {
    border-color: #c5931a;
    box-shadow: 0 4px 15px -5px rgba(0,0,0,0.1);
    opacity: 0.9;
}
.gz-custom-table {
    border-collapse: collapse;
    width: 100%;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px -10px rgba(0,0,0,0.1);
    overflow: hidden;
}
.gz-custom-table th, .gz-custom-table td {
    border: 1px solid #e2e8f0;
    padding: 1.25rem 1rem;
}
.gz-custom-table th {
    background-color: #334155; /* slate-700 - Milder color */
    color: #f1f5f9; /* slate-100 */
    font-weight: 700;
    font-size: 1.05rem;
    border-bottom: 2px solid #c5931a;
    text-align: center; 
}
.gz-custom-table td {
    background-color: #fff;
    text-align: right;
}
.gz-custom-table td:is(:first-child, :nth-child(2)) {
    text-align: center;
}
.gz-custom-table tbody tr:nth-child(even) td {
    background-color: #fffaf0; /* Lightest yellow */
}
details.gz-custom-accordion > summary {
    list-style: none;
    padding: 1.25rem;
    background-color: #fff;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px -8px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2d3748;
}
details.gz-custom-accordion > summary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -8px rgba(197, 147, 26, 0.15);
    border-color: #f7d16e;
}
details.gz-custom-accordion > summary::-webkit-details-marker { display: none; }
details.gz-custom-accordion > summary::after {
    content: '▼';
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: #c5931a;
}
details.gz-custom-accordion[open] > summary {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: #fffaf0;
}
details.gz-custom-accordion[open] > summary::after { transform: rotate(180deg); }
.gz-custom-accordion .gz-content {
    padding: 1.5rem;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 0.75rem 0.75rem;
}
.gz-bullet-list li {
    position: relative;
    padding-right: 25px;
    margin-bottom: 12px;
    line-height: 1.7;
}
.gz-bullet-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    top: 5px;
    color: #c5931a;
    font-weight: bold;
}
.gz-highlight-box {
    background-color: #fffaf0;
    border-right: 5px solid #e6b33e;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: #4a5568;
    box-shadow: 0 4px 15px -8px rgba(0,0,0,0.08);
}
.gz-condition-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    flex: 1;
    box-shadow: 0 8px 25px -8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem; /* Reduced gap a bit */
    position: relative;
}
.gz-condition-card:hover {
    transform: translateY(-5px);
}
.gz-step-number {
    width: 40px;
    height: 40px;
    border: 2px solid;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.gz-condition-icon {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gz-condition-icon svg {
    width: 2rem;
    height: 2rem;
}
.gz-card-text h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}
.gz-card-text p {
     font-size: 0.9rem;
     color: #475569; /* slate-600 */
     line-height: 1.6;
}
.gz-condition-card--blue .gz-step-number { border-color: #3b82f6; color: #3b82f6; background-color: #eff6ff; }
.gz-condition-card--blue .gz-condition-icon { color: #3b82f6; background-color: #eff6ff; }
.gz-condition-card--blue:hover { border-color: #60a5fa; box-shadow: 0 12px 30px -10px rgba(59, 130, 246, 0.25); }
.gz-condition-card--orange .gz-step-number { border-color: #f97316; color: #f97316; background-color: #fff7ed; }
.gz-condition-card--orange .gz-condition-icon { color: #f97316; background-color: #fff7ed; }
.gz-condition-card--orange:hover { border-color: #fb923c; box-shadow: 0 12px 30px -10px rgba(249, 115, 22, 0.25); }
.gz-condition-card--green .gz-step-number { border-color: #16a34a; color: #16a34a; background-color: #f0fdf4; }
.gz-condition-card--green .gz-condition-icon { color: #16a34a; background-color: #f0fdf4; }
.gz-condition-card--green:hover { border-color: #4ade80; box-shadow: 0 12px 30px -10px rgba(22, 163, 74, 0.25); }

.gz-modal-btn {
    background-color: rgba(13, 61, 86, 0.7);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.gz-modal-btn:hover {
    background-color: rgba(13, 61, 86, 1);
    border-color: #f7d16e;
}
#modal-image {
    transition: transform 0.3s ease-out;
}
#modal-image.pannable { cursor: grab; }
#modal-image.panning { cursor: grabbing; }

/* Tooltip CSS */
.gp-tooltip-container {
    position: relative;
}
.gp-tooltip-text {
    visibility: hidden;
    width: 240px;
    background-color: #2d3748;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    z-index: 10;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 8px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.gp-tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #2d3748 transparent transparent transparent;
}
.gp-tooltip-container:hover .gp-tooltip-text {
    visibility: visible;
    opacity: 1;
}
.risk-card {
     transition: all 0.3s ease;
}
.risk-card:hover {
    border-color: #f7d16e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -8px rgba(0,0,0,0.1);
}

/*
=======================================================
END: CSS Stylesheet
=======================================================
*/
