.aragon-directo-wrap {
    max-width: 1100px;
    margin: 40px auto 60px;
    padding: 0 20px;
}

.aragon-directo-title {
    margin-bottom: 28px;
    font-size: 42px;
    line-height: 1.1;
    color: #111;
    font-weight: 800;
}

.aragon-directo-section-title {
    margin: 0 0 24px;
    font-size: 28px;
    line-height: 1.2;
    color: #111;
    font-weight: 800;
}

.aragon-station-group {
    margin-bottom: 20px;
    border: 1px solid #e7e7e7;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.aragon-station-group:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

.aragon-station-toggle {
    width: 100%;
    border: 0;
    background: #fff !important;
    padding: 22px 24px;
    text-align: left;
    font-size: 30px;
    font-weight: 800;
    color: #111 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.aragon-station-toggle:hover {
    background: #fafafa !important;
}

.aragon-station-title-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.aragon-station-dot {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232b6cb0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2v20'/%3E%3Cpath d='m4.93 6.93 14.14 14.14'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='m6.93 19.07 12.14-12.14'/%3E%3Cpath d='m8 4 4 4 4-4'/%3E%3Cpath d='m8 20 4-4 4 4'/%3E%3Cpath d='m4 8 4 4-4 4'/%3E%3Cpath d='m20 8-4 4 4 4'/%3E%3C/svg%3E");
}

.aragon-station-dot::before {
    content: "";
}

.aragon-toggle-icon {
    font-size: 28px;
    font-weight: 700;
    color: #111 !important;
    line-height: 1;
}

.aragon-station-content {
    display: none;
    padding: 8px 24px 24px;
    border-top: 1px solid #f0f0f0;
    background: #fcfcfc;
}

.aragon-station-group.active .aragon-station-content {
    display: block;
}

.aragon-zone-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.aragon-zone-item {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.aragon-zone-toggle {
    width: 100%;
    background: #fff !important;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 18px 20px;
    text-align: left;
    font-size: 22px;
    font-weight: 700;
    color: #111 !important;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease;
}

.aragon-zone-toggle:hover {
    border-color: #d9d9d9;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.aragon-zone-item.active .aragon-zone-toggle {
    border-color: #d71920;
}

.aragon-zone-detail {
    display: none;
    padding-top: 14px;
}

.aragon-zone-item.active .aragon-zone-detail {
    display: block;
}

.aragon-webcam-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.aragon-webcam-thumb {
    position: relative;
    overflow: hidden;
    background: #f3f3f3;
}

.aragon-webcam-thumb img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.aragon-webcam-card:hover .aragon-webcam-thumb img {
    transform: scale(1.02);
}

.aragon-webcam-content {
    padding: 20px;
    background: #fff;
}

.aragon-webcam-content h3 {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.2;
    color: #111 !important;
    font-weight: 800;
}

.aragon-load-webcam {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 10px;
    border: none;
    background: #d71920 !important;
    color: #fff !important;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: 0 6px 16px rgba(215, 25, 32, 0.22);
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.aragon-load-webcam:hover {
    transform: translateY(-1px);
    opacity: 0.96;
    box-shadow: 0 10px 18px rgba(215, 25, 32, 0.28);
}

.aragon-load-webcam:disabled {
    opacity: 0.72;
    cursor: wait;
    transform: none;
}

.aragon-webcam-no-source {
    margin: 12px 0 0;
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

.aragon-webcam-player {
    margin-top: 14px;
}

.aragon-webcam-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    background: #111;
    border: 1px solid #ececec;
}

.aragon-webcam-stage iframe,
.aragon-webcam-stage img {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.aragon-webcam-stage iframe {
    background: #111;
}

.aragon-webcam-stage-image {
    background: #111;
}

.aragon-webcam-stage-image img {
    object-fit: contain;
    background: #111;
}

.aragon-webcam-error {
    padding: 16px 18px;
    border: 1px solid #f1d2d4;
    background: #fff5f5;
    color: #9b1c1f;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .aragon-zone-list {
        grid-template-columns: 1fr;
    }

    .aragon-webcam-thumb img {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .aragon-directo-wrap {
        margin-top: 28px;
        padding: 0 16px;
    }

    .aragon-directo-title {
        font-size: 34px;
    }

    .aragon-directo-section-title {
        font-size: 24px;
    }

    .aragon-station-toggle {
        font-size: 24px;
        padding: 18px 18px;
    }

    .aragon-station-content {
        padding: 8px 18px 18px;
    }

    .aragon-zone-toggle {
        font-size: 19px;
        padding: 16px 16px;
    }

    .aragon-webcam-content h3 {
        font-size: 24px;
    }

    .aragon-webcam-thumb img {
        height: 220px;
    }

    .aragon-station-dot {
        width: 16px;
        height: 16px;
    }
}